forked from quic-issues/427e7578-d7bf-49c8-aee9-2dd999e25316
implemented frontend including separate message system; started to implement backend
This commit is contained in:
16
yjs-poll/node_modules/lib0/eventloop.d.ts
generated
vendored
Normal file
16
yjs-poll/node_modules/lib0/eventloop.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
export function enqueue(f: () => void): void;
|
||||
export function timeout(timeout: number, callback: Function): TimeoutObject;
|
||||
export function interval(timeout: number, callback: Function): TimeoutObject;
|
||||
export const Animation: {
|
||||
new (timeoutId: number): {
|
||||
_: number;
|
||||
destroy(): void;
|
||||
};
|
||||
};
|
||||
export function animationFrame(cb: (arg0: number) => void): TimeoutObject;
|
||||
export function idleCallback(cb: Function): TimeoutObject;
|
||||
export function createDebouncer(timeout: number, triggerAfter?: number): (cb: ((...args: any) => void) | null) => void;
|
||||
export type TimeoutObject = {
|
||||
destroy: Function;
|
||||
};
|
||||
//# sourceMappingURL=eventloop.d.ts.map
|
||||
Reference in New Issue
Block a user