From 2d9a28f27ec31fa465ee1789be30023e3568353c Mon Sep 17 00:00:00 2001 From: TylerLeonhardt Date: Fri, 20 Nov 2020 22:03:03 +0000 Subject: [PATCH] [Ignore] Update Notebook dts --- vscode.proposed.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vscode.proposed.d.ts b/vscode.proposed.d.ts index b803dce0f8..4c4b4f9be6 100644 --- a/vscode.proposed.d.ts +++ b/vscode.proposed.d.ts @@ -233,6 +233,12 @@ declare module 'vscode' { * The document's current run state */ runState?: NotebookRunState; + + /** + * Whether the document is trusted, default to true + * When false, insecure outputs like HTML, JavaScript, SVG will not be rendered. + */ + trusted?: boolean; } export interface NotebookDocumentContentOptions {