This commit is contained in:
Johannes Rieken
2021-04-15 16:21:06 +02:00
parent afa4a2df2c
commit b6cee1ca22
4 changed files with 10 additions and 10 deletions

View File

@@ -1942,8 +1942,8 @@ export interface ExtHostNotebookShape extends ExtHostNotebookDocumentsAndEditors
$saveNotebookAs(viewType: string, uri: UriComponents, target: UriComponents, token: CancellationToken): Promise<boolean>;
$backupNotebook(viewType: string, uri: UriComponents, cancellation: CancellationToken): Promise<string>;
$dataToNotebook(handle: number, data: VSBuffer): Promise<NotebookDataDto>;
$notebookToData(handle: number, data: NotebookDataDto): Promise<VSBuffer>;
$dataToNotebook(handle: number, data: VSBuffer, token: CancellationToken): Promise<NotebookDataDto>;
$notebookToData(handle: number, data: NotebookDataDto, token: CancellationToken): Promise<VSBuffer>;
}
export interface ExtHostNotebookDocumentsAndEditorsShape {