mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-22 01:29:04 +01:00
pipe variable change event through from extention API (#198572)
pipe variable change event through
This commit is contained in:
@@ -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>;
|
||||
|
||||
Reference in New Issue
Block a user