UNPKG

json-stringify-pretty-compact

Version:

The best of both `JSON.stringify(obj)` and `JSON.stringify(obj, null, indent)`.

9 lines (8 loc) 216 B
declare module 'json-stringify-pretty-compact' { const stringify: (object: any, options?: { indent?: number | string, maxLength?: number, margins?: boolean }) => string; export = stringify; }