(
path: string,
content: string,
mimeType?: Parameters<Workspace["appendFile"]>[2]
)
| 633 | } |
| 634 | |
| 635 | async appendFile( |
| 636 | path: string, |
| 637 | content: string, |
| 638 | mimeType?: Parameters<Workspace["appendFile"]>[2] |
| 639 | ) { |
| 640 | return (await this.parent()).appendFile(path, content, mimeType); |
| 641 | } |
| 642 | |
| 643 | async exists(path: string) { |
| 644 | return (await this.parent()).exists(path); |
nothing calls this directly
no test coverage detected