(fileName: string)
| 58 | } |
| 59 | |
| 60 | assumeFileExists(fileName: string): void { |
| 61 | this.writeFile(fileName, ''); |
| 62 | } |
| 63 | |
| 64 | getEntry(fileName: string | string[]): Entry | undefined { |
| 65 | let parts = typeof fileName === 'string' ? fileName.split('/') : fileName; |