* Returns undefined if file is not found. Does not throw.
(p: string)
| 1291 | * Returns undefined if file is not found. Does not throw. |
| 1292 | */ |
| 1293 | readFile(p: string): Promise<string>; |
| 1294 | readFile(p: string, encoding: 'utf8'): Promise<string>; |
| 1295 | readFile(p: string, encoding: 'binary'): Promise<any>; |
| 1296 | /** |
no outgoing calls
no test coverage detected