Created
June 14, 2016 19:39
-
-
Save Jason-Rev/30418b9f05a9ea1dd8539c2ec372dd1c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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