// Type definitions for stringify-object 3.2 // Project: https://github.com/yeoman/stringify-object // Definitions by: Chris Khoo // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.2 declare namespace stringifyObject { } declare function stringifyObject(o: any, options?: { indent?: string, singleQuotes?: boolean, filter?(o: any, prop: string | symbol): boolean, inlineCharacterLimit?: number, transform?: (val: any[] | object, i: number | string | symbol, value: string) => string, }): string; export = stringifyObject;