Files
muuhd/node_modules/concurrently/dist/src/jsonc.d.ts
Kim Ravn Hansen 3f11ebe6dc rearrage_stuff
2025-09-16 11:26:40 +02:00

9 lines
311 B
TypeScript

declare const JSONC: {
parse: (text: string) => any;
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;
};
};
export default JSONC;