Files
vat-api.eu/node_modules/structured-clone-es/dist/index.d.mts
2026-02-13 22:02:30 +01:00

12 lines
325 B
TypeScript

/**
* Represent a structured clone value as string.
*/
declare const stringify: (obj: any) => string;
/**
* Revive a previously stringified structured clone.
*/
declare const parse: (str: string) => unknown;
declare const structuredClone: typeof globalThis.structuredClone;
export { parse, stringify, structuredClone };