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 3
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
4
*--------------------------------------------------------------------------------------------*/
5
5
6
- import { Command } from 'vscode' ;
7
-
8
6
/**
9
7
* This is the place for API experiments and proposals.
10
8
* These API are NOT stable and subject to change. They are only available in the Insiders
@@ -589,10 +587,16 @@ declare module 'vscode' {
589
587
* Content providers should always use [file system providers](#FileSystemProvider) to
590
588
* resolve the raw content for `uri` as the resouce is not necessarily a file on disk.
591
589
*/
590
+ // eslint-disable-next-line vscode-dts-provider-naming
592
591
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
593
594
resolveNotebook ( document : NotebookDocument , webview : NotebookCommunication ) : Promise < void > ;
595
+ // eslint-disable-next-line vscode-dts-provider-naming
594
596
saveNotebook ( document : NotebookDocument , cancellation : CancellationToken ) : Promise < void > ;
597
+ // eslint-disable-next-line vscode-dts-provider-naming
595
598
saveNotebookAs ( targetResource : Uri , document : NotebookDocument , cancellation : CancellationToken ) : Promise < void > ;
599
+ // eslint-disable-next-line vscode-dts-provider-naming
596
600
backupNotebook ( document : NotebookDocument , context : NotebookDocumentBackupContext , cancellation : CancellationToken ) : Promise < NotebookDocumentBackup > ;
597
601
}
598
602
You can’t perform that action at this time.
0 commit comments