(
path: string,
content: string,
mimeType?: Parameters<Workspace["appendFile"]>[2]
)
| 431 | } |
| 432 | |
| 433 | async appendFile( |
| 434 | path: string, |
| 435 | content: string, |
| 436 | mimeType?: Parameters<Workspace["appendFile"]>[2] |
| 437 | ): Promise<void> { |
| 438 | return this.workspace.appendFile(path, content, mimeType); |
| 439 | } |
| 440 | |
| 441 | async exists(path: string): Promise<boolean> { |
| 442 | return this.workspace.exists(path); |
nothing calls this directly
no test coverage detected