(path: string)
| 81 | } |
| 82 | } |
| 83 | delete(path: string): void { |
| 84 | this.innerFs.delete(path); |
| 85 | this.typescriptEnv.deleteFile(path); |
| 86 | } |
| 87 | list(prefix?: string): string[] { |
| 88 | return this.innerFs.list(prefix); |
| 89 | } |
nothing calls this directly
no test coverage detected