We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b14c46 commit 9af4e67Copy full SHA for 9af4e67
1 file changed
types.d.ts
@@ -26,16 +26,15 @@ interface ComponentizeOptions {
26
* - stdio: console.log(), console.error and errors are provided to stderr
27
* - random: Math.random() and crypto.randomBytes()
28
* - clocks: Date.now()
29
+ * - http: fetch() support
30
*
31
*/
- disableFeatures?: ('stdio' | 'random' | 'clocks')[],
32
+ disableFeatures?: ('stdio' | 'random' | 'clocks' | 'http')[],
33
/**
34
* Enable WASI features in the base engine
- *
35
- * - http: fetch() API
36
+ * (no experimental subsystems currently supported)
37
38
- enableFeatures?: ('http')[],
+ enableFeatures?: [],
39
}
40
41
0 commit comments