Skip to content

Commit 29b4a41

Browse files
[Ignore] Update Notebook dts (#3124)
Co-authored-by: TylerLeonhardt <[email protected]>
1 parent 308b7ce commit 29b4a41

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

vscode.proposed.d.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import { Command } from 'vscode';
7-
86
/**
97
* This is the place for API experiments and proposals.
108
* These API are NOT stable and subject to change. They are only available in the Insiders
@@ -589,10 +587,16 @@ declare module 'vscode' {
589587
* Content providers should always use [file system providers](#FileSystemProvider) to
590588
* resolve the raw content for `uri` as the resouce is not necessarily a file on disk.
591589
*/
590+
// eslint-disable-next-line vscode-dts-provider-naming
592591
openNotebook(uri: Uri, openContext: NotebookDocumentOpenContext): NotebookData | Promise<NotebookData>;
592+
// eslint-disable-next-line vscode-dts-provider-naming
593+
// eslint-disable-next-line vscode-dts-cancellation
593594
resolveNotebook(document: NotebookDocument, webview: NotebookCommunication): Promise<void>;
595+
// eslint-disable-next-line vscode-dts-provider-naming
594596
saveNotebook(document: NotebookDocument, cancellation: CancellationToken): Promise<void>;
597+
// eslint-disable-next-line vscode-dts-provider-naming
595598
saveNotebookAs(targetResource: Uri, document: NotebookDocument, cancellation: CancellationToken): Promise<void>;
599+
// eslint-disable-next-line vscode-dts-provider-naming
596600
backupNotebook(document: NotebookDocument, context: NotebookDocumentBackupContext, cancellation: CancellationToken): Promise<NotebookDocumentBackup>;
597601
}
598602

0 commit comments

Comments
 (0)