| 2 | |
| 3 | declare global { |
| 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> { |
| 10 | // This is an incomplete list of methods added to Promise.prototype by the |
no outgoing calls
no test coverage detected
searching dependent graphs…