File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -201,15 +201,15 @@ export type EnvironmentId = {
201201} ;
202202
203203/**
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
205205 * was contributed.
206206 */
207- export type EnvironmentTools = KnownEnvironmentTools | string ;
207+ export type EnvironmentTools = BuiltInEnvironmentTools | string ;
208208/**
209209 * Tools or plugins the Python extension currently has built-in support for. Note this list is expected to shrink
210210 * once tools have their own separate extensions.
211211 */
212- export type KnownEnvironmentTools =
212+ export type BuiltInEnvironmentTools =
213213 | 'Conda'
214214 | 'Pipenv'
215215 | 'Poetry'
@@ -220,14 +220,14 @@ export type KnownEnvironmentTools =
220220 | 'Unknown' ;
221221
222222/**
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.
224224 */
225- export type EnvironmentType = KnownEnvironmentTypes | string ;
225+ export type EnvironmentType = BuiltInEnvironmentTypes | string ;
226226/**
227227 * Environment types the Python extension currently has built-in support for. Note this list is expected to shrink
228228 * once tools have their own separate extensions.
229229 */
230- export type KnownEnvironmentTypes = 'VirtualEnv' | 'Conda' | 'Unknown' ;
230+ export type BuiltInEnvironmentTypes = 'VirtualEnv' | 'Conda' | 'Unknown' ;
231231
232232/**
233233 * Carries bitness for an environment.
You can’t perform that action at this time.
0 commit comments