mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
481 B
TypeScript
16 lines
481 B
TypeScript
// Type definitions for stringify-object 3.1
|
|
// Project: https://github.com/yeoman/stringify-object
|
|
// Definitions by: Chris Khoo <https://github.com/khoomeister>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare namespace stringifyObject { }
|
|
|
|
declare function stringifyObject(o: any, options?: {
|
|
indent?: string,
|
|
singleQuotes?: boolean,
|
|
filter?(o: any, prop: string): boolean,
|
|
inlineCharacterLimit?: number
|
|
}): string;
|
|
|
|
export = stringifyObject;
|