(input: Buffer | string, reviver?: (this: any, key: string, value: any) => any)
| 4 | interface JSON { |
| 5 | // The ES5 library fails to allow the input parameter to be a Buffer. |
| 6 | parse(input: Buffer | string, reviver?: (this: any, key: string, value: any) => any): any; |
| 7 | } |
| 8 | |
| 9 | interface Promise<T> { |
no outgoing calls
no test coverage detected