123456789101112131415161718192021222324252627282930313233343536 |
- declare namespace stripJsonComments {
- interface Options {
-
- readonly whitespace?: boolean;
- }
- }
- declare function stripJsonComments(
- jsonString: string,
- options?: stripJsonComments.Options
- ): string;
- export = stripJsonComments;
|