declarations
Version:
[](https://www.npmjs.com/package/declarations)
14 lines (11 loc) • 471 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
declare module "strip-json-comments" {
interface StripJsonOptions {
whitespace?: boolean;
}
function stripJsonComments(input: string, opts?: StripJsonOptions): string;
export = stripJsonComments;
}