(pathToRead: string, encoding: BufferEncoding)
| 20 | interface FileSystemExtended { |
| 21 | existsSync(pathToCheck: string): boolean; |
| 22 | readFileSync(pathToRead: string, encoding: BufferEncoding): string; |
| 23 | writeFileSync(pathToWrite: string, data: string): void; |
| 24 | mkdirSync(pathToCreate: string, options?: { recursive?: boolean }): void; |
| 25 | } |
no outgoing calls
no test coverage detected