We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f33ca03 commit 2bf0340Copy full SHA for 2bf0340
vscode.proposed.d.ts
@@ -474,6 +474,10 @@ declare module 'vscode' {
474
}
475
476
export interface NotebookContentProvider {
477
+ /**
478
+ * Content providers should always use [file system providers](#FileSystemProvider) to
479
+ * resolve the raw content for `uri` as the resouce is not necessarily a file on disk.
480
+ */
481
openNotebook(uri: Uri, openContext: NotebookDocumentOpenContext): NotebookData | Promise<NotebookData>;
482
resolveNotebook(document: NotebookDocument, webview: NotebookCommunication): Promise<void>;
483
saveNotebook(document: NotebookDocument, cancellation: CancellationToken): Promise<void>;
0 commit comments