Closed
Description
For example:
export interface EnvironmentVariableMutator {
readonly type: EnvironmentVariableMutatorType;
readonly value: string;
readonly workspace: Workspace | undefined;
}
export interface EnvironmentVariableCollection extends Iterable<[variable: string, mutator: EnvironmentVariableMutator]> {
replace(variable: string, value: string, workspace?: Workspace): void;
append(variable: string, value: string, workspace?: Workspace): void;
prepend(variable: string, value: string, workspace?: Workspace): void;
}