File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -201,15 +201,15 @@ export type EnvironmentId = {
201
201
} ;
202
202
203
203
/**
204
- * Tool/plugin where the environment came from. It can be {@link KnownEnvironmentTools } or custom string which
204
+ * Tool/plugin where the environment came from. It can be {@link BuiltInEnvironmentTools } or custom string which
205
205
* was contributed.
206
206
*/
207
- export type EnvironmentTools = KnownEnvironmentTools | string ;
207
+ export type EnvironmentTools = BuiltInEnvironmentTools | string ;
208
208
/**
209
209
* Tools or plugins the Python extension currently has built-in support for. Note this list is expected to shrink
210
210
* once tools have their own separate extensions.
211
211
*/
212
- export type KnownEnvironmentTools =
212
+ export type BuiltInEnvironmentTools =
213
213
| 'Conda'
214
214
| 'Pipenv'
215
215
| 'Poetry'
@@ -220,14 +220,14 @@ export type KnownEnvironmentTools =
220
220
| 'Unknown' ;
221
221
222
222
/**
223
- * Type of the environment. It can be {@link KnownEnvironmentTypes } or custom string which was contributed.
223
+ * Type of the environment. It can be {@link BuiltInEnvironmentTypes } or custom string which was contributed.
224
224
*/
225
- export type EnvironmentType = KnownEnvironmentTypes | string ;
225
+ export type EnvironmentType = BuiltInEnvironmentTypes | string ;
226
226
/**
227
227
* Environment types the Python extension currently has built-in support for. Note this list is expected to shrink
228
228
* once tools have their own separate extensions.
229
229
*/
230
- export type KnownEnvironmentTypes = 'VirtualEnv' | 'Conda' | 'Unknown' ;
230
+ export type BuiltInEnvironmentTypes = 'VirtualEnv' | 'Conda' | 'Unknown' ;
231
231
232
232
/**
233
233
* Carries bitness for an environment.
You can’t perform that action at this time.
0 commit comments