forked from microsoft/vscode-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
16 lines (13 loc) · 684 Bytes
/
types.ts
File metadata and controls
16 lines (13 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License
import { Progress, WorkspaceFolder } from 'vscode';
export interface CreateEnvironmentProgress extends Progress<{ message?: string; increment?: number }> {}
/**
* The interpreter path to use for the environment creation. If not provided, will prompt the user to select one.
* If the value of `interpreter` & `workspaceFolder` & `providerId` are provided we will not prompt the user to select a provider, nor folder, nor an interpreter.
*/
export interface CreateEnvironmentOptionsInternal {
workspaceFolder?: WorkspaceFolder;
providerId?: string;
interpreter?: string;
}