(path: string)
| 56 | writeFileBytes(path: string, content: Uint8Array): Promise<void>; |
| 57 | appendFile(path: string, content: string | Uint8Array): Promise<void>; |
| 58 | exists(path: string): Promise<boolean>; |
| 59 | /** Follows symlinks. Throws ENOENT if path does not exist. */ |
| 60 | stat(path: string): Promise<FsStat>; |
| 61 | /** Does not follow the final symlink. Throws ENOENT if path does not exist. */ |
no outgoing calls