elearning/Frontend-Learner/node_modules/structured-clone-es/dist/index.d.mts

12 lines
325 B
TypeScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
/**
* 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 };