(path: string)
| 217 | |
| 218 | export interface FileAPI { |
| 219 | list(path: string): Promise<FileEntry[]>; |
| 220 | read(path: string, options?: ReadOptions): Promise<string>; |
| 221 | search(query: string, options?: SearchOptions): Promise<SearchResult[]>; |
| 222 | upload(file: File): Promise<UploadResult>; |
no outgoing calls
no test coverage detected