Finalize EnvironmentVariableCollection.description

Fixes #171108
This commit is contained in:
Daniel Imms 2023-06-05 15:24:13 -07:00
parent d77b835199
commit b39e7f2912
No known key found for this signature in database
GPG key ID: 7116259D505CA628
2 changed files with 6 additions and 8 deletions

View file

@ -11264,6 +11264,12 @@ declare module 'vscode' {
*/
persistent: boolean;
/**
* A description for the environment variable collection, this will be used to describe the
* changes in the UI.
*/
description: string | MarkdownString | undefined;
/**
* Replace an environment variable with a value.
*

View file

@ -23,12 +23,4 @@ declare module 'vscode' {
*/
workspaceFolder?: WorkspaceFolder;
};
export interface EnvironmentVariableCollection extends Iterable<[variable: string, mutator: EnvironmentVariableMutator]> {
/**
* A description for the environment variable collection, this will be used to describe the
* changes in the UI.
*/
description: string | MarkdownString | undefined;
}
}