ngx-open-map-wrapper/node_modules/json-stringify-pretty-compact/index.d.ts

13 lines
301 B
TypeScript

declare module "json-stringify-pretty-compact" {
export default function stringify(
value: any,
options?: {
indent?: number | string;
maxLength?: number;
replacer?:
| ((this: any, key: string, value: any) => any)
| (number | string)[];
}
): string;
}