Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion vscode.proposed.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,12 @@ declare module 'vscode' {
* Controls if a meetadata property change will trigger notebook document content change and if it will be used in the diff editor
* Default to false. If the content provider doesn't persisit a metadata property in the file document, it should be set to true.
*/
transientMetadata: { [K in keyof NotebookCellMetadata]?: boolean }
transientMetadata: { [K in keyof NotebookCellMetadata]?: boolean };

/**
* Not ready for production or development use yet.
*/
viewOptions?: { displayName: string; filenamePattern: GlobPattern | { include: GlobPattern; exclude: GlobPattern; }; exclusive?: boolean; };
}
): Disposable;

Expand Down