(
uri: Uri,
content: Uint8Array,
options: { create: boolean; overwrite: boolean }
)
| 47 | } |
| 48 | |
| 49 | async writeFile( |
| 50 | uri: Uri, |
| 51 | content: Uint8Array, |
| 52 | options: { create: boolean; overwrite: boolean } |
| 53 | ): Promise<void> { |
| 54 | const [tour, step] = this.getCurrentTourStep(); |
| 55 | step.contents = content.toString(); |
| 56 | this.updateTour(tour); |
| 57 | } |
| 58 | |
| 59 | async stat(uri: Uri): Promise<FileStat> { |
| 60 | return { |
no test coverage detected