pipe variable change event through from extention API (#198572)

pipe variable change event through
This commit is contained in:
Aaron Munger
2023-11-17 15:30:35 -08:00
committed by GitHub
parent af10768fd6
commit 6f7e102f08
7 changed files with 24 additions and 1 deletions

View File

@@ -21,7 +21,7 @@ declare module 'vscode' {
}
interface NotebookVariableProvider {
onDidChangeVariables: Event<void>;
onDidChangeVariables: Event<NotebookDocument>;
/** When parent is undefined, this is requesting global Variables. When a variable is passed, it's requesting child props of that Variable. */
provideVariables(notebook: NotebookDocument, parent: Variable | undefined, kind: NotebookVariablesRequestKind, start: number, token: CancellationToken): AsyncIterable<VariablesResult>;