rittenhop-dev/versions/5.94.2/node_modules/lib0/storage.d.ts
2024-09-23 19:40:12 -04:00

15 lines
416 B
TypeScript

/**
* This is basically localStorage in browser, or a polyfill in nodejs
*/
export const varStorage: any;
export function onChange(eventHandler: (arg0: {
key: string;
newValue: string;
oldValue: string;
}) => void): true | void;
export function offChange(eventHandler: (arg0: {
key: string;
newValue: string;
oldValue: string;
}) => void): true | void;
//# sourceMappingURL=storage.d.ts.map