@@ -83,7 +83,7 @@ export type Environment = EnvironmentId & {
83
83
/**
84
84
* Bitness if known at this moment.
85
85
*/
86
- readonly bitness : Architecture | undefined ;
86
+ readonly bitness : Bitness | undefined ;
87
87
/**
88
88
* Value of `sys.prefix` in sys module if known at this moment.
89
89
*/
@@ -148,7 +148,7 @@ export type ResolvedEnvironment = Environment & {
148
148
/**
149
149
* Bitness of the environment.
150
150
*/
151
- readonly bitness : Architecture ;
151
+ readonly bitness : Bitness ;
152
152
/**
153
153
* Value of `sys.prefix` in sys module.
154
154
*/
@@ -206,7 +206,8 @@ export type EnvironmentId = {
206
206
*/
207
207
export type EnvironmentTools = KnownEnvironmentTools | string ;
208
208
/**
209
- * Tools or plugins the Python extension is aware of.
209
+ * Tools or plugins the Python extension currently has built-in support for. Note this list is expected to shrink
210
+ * once tools have their own separate extensions.
210
211
*/
211
212
export type KnownEnvironmentTools =
212
213
| 'Conda'
@@ -223,14 +224,15 @@ export type KnownEnvironmentTools =
223
224
*/
224
225
export type EnvironmentType = KnownEnvironmentTypes | string ;
225
226
/**
226
- * Environment types the Python extension is aware of.
227
+ * Environment types the Python extension currently has built-in support for. Note this list is expected to shrink
228
+ * once tools have their own separate extensions.
227
229
*/
228
230
export type KnownEnvironmentTypes = 'VirtualEnv' | 'Conda' | 'Unknown' ;
229
231
230
232
/**
231
233
* Carries bitness for an environment.
232
234
*/
233
- export type Architecture = 'x86 ' | 'x64 ' | 'Unknown' ;
235
+ export type Bitness = '64-bit ' | '32-bit ' | 'Unknown' ;
234
236
235
237
/**
236
238
* The possible Python release levels.
0 commit comments