implemented frontend including separate message system; started to implement backend
This commit is contained in:
15
yjs-poll/node_modules/lib0/dist/storage.d.ts
generated
vendored
Normal file
15
yjs-poll/node_modules/lib0/dist/storage.d.ts
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* 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
|
||||
Reference in New Issue
Block a user