forked from quic-issues/427e7578-d7bf-49c8-aee9-2dd999e25316
implemented frontend including separate message system; started to implement backend
This commit is contained in:
23
yjs-poll/node_modules/lib0/dist/json.d.ts
generated
vendored
Normal file
23
yjs-poll/node_modules/lib0/dist/json.d.ts
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
/**
|
||||
* JSON utility functions.
|
||||
*
|
||||
* @module json
|
||||
*/
|
||||
/**
|
||||
* Transform JavaScript object to JSON.
|
||||
*
|
||||
* @param {any} object
|
||||
* @return {string}
|
||||
*/
|
||||
export const stringify: {
|
||||
(value: any, replacer?: (this: any, key: string, value: any) => any, space?: string | number): string;
|
||||
(value: any, replacer?: (number | string)[] | null, space?: string | number): string;
|
||||
};
|
||||
/**
|
||||
* Parse JSON object.
|
||||
*
|
||||
* @param {string} json
|
||||
* @return {any}
|
||||
*/
|
||||
export const parse: (text: string, reviver?: (this: any, key: string, value: any) => any) => any;
|
||||
//# sourceMappingURL=json.d.ts.map
|
||||
Reference in New Issue
Block a user