(dirPath: string)
| 1228 | } |
| 1229 | |
| 1230 | async readdir(dirPath: string): Promise<ReaddirResult> { |
| 1231 | return this.post('/api/fs/readdir', { dirPath }); |
| 1232 | } |
| 1233 | |
| 1234 | async exists(filePath: string): Promise<boolean> { |
| 1235 | const result = await this.post<{ success: boolean; exists: boolean }>('/api/fs/exists', { |
no test coverage detected