Skip to content

Instantly share code, notes, and snippets.

@Jason-Rev
Created June 14, 2016 19:39
Show Gist options
  • Save Jason-Rev/30418b9f05a9ea1dd8539c2ec372dd1c to your computer and use it in GitHub Desktop.
Save Jason-Rev/30418b9f05a9ea1dd8539c2ec372dd1c to your computer and use it in GitHub Desktop.
declare module "comment-json" {
type Reviver = (k: number | string, v: any) => any;
export function parse(json: string, reviver?: Reviver, removes_comments?: boolean): Object;
export function stringify(value: any, replacer?: any, space?: string | number): string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment