From 6a02e8333c172e9f4433b13835bf58dd0533dd63 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Tue, 1 Jun 2021 11:40:51 +0200 Subject: [PATCH] small jsdoc and todo tweaks --- src/vs/vscode.d.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index 06415df5ec6..2e4b0364460 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -11494,7 +11494,7 @@ declare module 'vscode' { /** * The unix timestamp at which execution started. */ - // todo@API use duration instead of start/end? + // todo@API use duration instead of start/end? doesn't allow for only passing one readonly startTime?: number; /** @@ -11685,9 +11685,8 @@ declare module 'vscode' { items: NotebookCellOutputItem[]; /** - * Arbitrary metadata for this cell output. Must be JSON-stringifyable. + * Arbitrary metadata for this cell output. . */ - //todo@API have this OR NotebookCellOutputItem#metadata but not both? Preference for this. metadata?: { [key: string]: any }; /** @@ -11736,7 +11735,7 @@ declare module 'vscode' { outputs?: NotebookCellOutput[]; /** - * The metadata of this cell data. + * Arbitrary metadata of this cell data. Can be anything but must be JSON-stringifyable. */ metadata?: NotebookCellMetadata;