Return file metadata, or null if the path does not exist or is not a file.
(path: string)
| 20 | export interface FileStore { |
| 21 | /** Return file metadata, or null if the path does not exist or is not a file. */ |
| 22 | stat(path: string): Promise<FileStat | null>; |
| 23 | |
| 24 | /** |
| 25 | * Stream the file (or a byte range of it) in chunks. The total |
no outgoing calls
no test coverage detected