concurrently
Version:
Run commands concurrently
9 lines (8 loc) • 361 B
TypeScript
declare const JSONC: {
parse: (text: string) => any;
stringify: {
(value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
(value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
};
};
export default JSONC;