Files
427e7578-d7bf-49c8-aee9-2dd…/yjs-poll/node_modules/lib0/dist/storage.d.ts

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