forked from quic-issues/427e7578-d7bf-49c8-aee9-2dd999e25316
implemented frontend including separate message system; started to implement backend
This commit is contained in:
22
yjs-poll/node_modules/lib0/dist/pair.d.ts
generated
vendored
Normal file
22
yjs-poll/node_modules/lib0/dist/pair.d.ts
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* Working with value pairs.
|
||||
*
|
||||
* @module pair
|
||||
*/
|
||||
/**
|
||||
* @template L,R
|
||||
*/
|
||||
export class Pair<L, R> {
|
||||
/**
|
||||
* @param {L} left
|
||||
* @param {R} right
|
||||
*/
|
||||
constructor(left: L, right: R);
|
||||
left: L;
|
||||
right: R;
|
||||
}
|
||||
export function create<L, R>(left: L, right: R): Pair<L, R>;
|
||||
export function createReversed<L, R>(right: R, left: L): Pair<L, R>;
|
||||
export function forEach<L, R>(arr: Array<Pair<L, R>>, f: (arg0: L, arg1: R) => any): void;
|
||||
export function map<L, R, X>(arr: Array<Pair<L, R>>, f: (arg0: L, arg1: R) => X): Array<X>;
|
||||
//# sourceMappingURL=pair.d.ts.map
|
||||
Reference in New Issue
Block a user