File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 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
592591openNotebook ( uri : Uri , openContext : NotebookDocumentOpenContext ) : NotebookData | Promise < NotebookData > ;
592+ // eslint-disable-next-line vscode-dts-provider-naming
593+ // eslint-disable-next-line vscode-dts-cancellation
593594resolveNotebook ( document : NotebookDocument , webview : NotebookCommunication ) : Promise < void > ;
595+ // eslint-disable-next-line vscode-dts-provider-naming
594596saveNotebook ( document : NotebookDocument , cancellation : CancellationToken ) : Promise < void > ;
597+ // eslint-disable-next-line vscode-dts-provider-naming
595598saveNotebookAs ( targetResource : Uri , document : NotebookDocument , cancellation : CancellationToken ) : Promise < void > ;
599+ // eslint-disable-next-line vscode-dts-provider-naming
596600backupNotebook ( document : NotebookDocument , context : NotebookDocumentBackupContext , cancellation : CancellationToken ) : Promise < NotebookDocumentBackup > ;
597601}
598602
You can’t perform that action at this time.
0 commit comments