forked from quic-issues/427e7578-d7bf-49c8-aee9-2dd999e25316
implemented frontend including separate message system; started to implement backend
This commit is contained in:
5
yjs-poll/node_modules/lib0/iterator.d.ts
generated
vendored
Normal file
5
yjs-poll/node_modules/lib0/iterator.d.ts
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
export function mapIterator<T, R>(iterator: Iterator<T>, f: (arg0: T) => R): IterableIterator<R>;
|
||||
export function createIterator<T>(next: () => IteratorResult<T>): IterableIterator<T>;
|
||||
export function iteratorFilter<T>(iterator: Iterator<T>, filter: (arg0: T) => boolean): IterableIterator<T>;
|
||||
export function iteratorMap<T, M>(iterator: Iterator<T>, fmap: (arg0: T) => M): IterableIterator<M | undefined>;
|
||||
//# sourceMappingURL=iterator.d.ts.map
|
||||
Reference in New Issue
Block a user