mirror of
https://github.com/amark/gun.git
synced 2025-08-24 03:23:15 +00:00
6 lines
271 B
TypeScript
6 lines
271 B
TypeScript
export declare function parse(text: string): Promise<any>;
|
|
export declare function stringify(value: any, waitForArrayBufferView?: boolean): Promise<string>;
|
|
export interface IArrayBufferViewWithPromise extends ArrayBufferView {
|
|
_promise?: Promise<ArrayBufferView>;
|
|
}
|