From 4ebf68103e620151af02fe814e458c775e269d3d Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Mon, 31 May 2021 16:32:35 +0200 Subject: [PATCH] readonly [] over ReadonlyArray... --- src/vs/vscode.d.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index 762db1e6e73..b7e3941a669 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -11347,7 +11347,7 @@ declare module 'vscode' { /** * The outputs of this cell. */ - readonly outputs: ReadonlyArray; + readonly outputs: readonly NotebookCellOutput[]; /** * The most recent {@link NotebookCellExecutionSummary excution summary} for this cell. @@ -11701,12 +11701,12 @@ declare module 'vscode' { /** * Create new notebook output. * - * @param outputs Notebook output items. + * @param items Notebook output items. * @param id Identifier of this output. * @param metadata Optional metadata. */ - //todo@API id-args is not used by jupyter but added with display_id in mind... - constructor(outputs: NotebookCellOutputItem[], id: string, metadata?: { [key: string]: any }); + //todo@API id-args is not used by jupyter but we it added with display_id in mind... + constructor(items: NotebookCellOutputItem[], id: string, metadata?: { [key: string]: any }); } /** @@ -12205,7 +12205,7 @@ declare module 'vscode' { /** * All notebook documents currently known to the editor. */ - export const notebookDocuments: ReadonlyArray; + export const notebookDocuments: readonly NotebookDocument[]; /** * Open a notebook. Will return early if this notebook is already {@link notebook.notebookDocuments loaded}. Otherwise