(dir: string)
| 14 | */ |
| 15 | export interface Filesystem { |
| 16 | list(dir: string): Promise<string[]>; |
| 17 | read(file: string): Promise<string>; |
| 18 | hash(file: string): Promise<string>; |
| 19 | write(file: string, contents: string): Promise<void>; |
no outgoing calls
no test coverage detected