(
path: string,
content: string,
mimeType?: Parameters<Workspace["writeFile"]>[2]
)
| 617 | } |
| 618 | |
| 619 | async writeFile( |
| 620 | path: string, |
| 621 | content: string, |
| 622 | mimeType?: Parameters<Workspace["writeFile"]>[2] |
| 623 | ) { |
| 624 | return (await this.parent()).writeFile(path, content, mimeType); |
| 625 | } |
| 626 | |
| 627 | async writeFileBytes( |
| 628 | path: string, |