Files
DefinitelyTyped/types/strip-json-comments/index.d.ts
2017-03-24 14:27:52 -07:00

13 lines
419 B
TypeScript

// Type definitions for strip-json-comments
// Project: https://github.com/sindresorhus/strip-json-comments
// Definitions by: Dylan R. E. Moonfire <https://github.com/dmoonfire/>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
interface StripJsonOptions {
whitespace?: boolean;
}
declare function stripJsonComments(input: string, opts?: StripJsonOptions): string;
export = stripJsonComments;