diff options
author | 2022-02-24 19:09:55 -0800 | |
---|---|---|
committer | 2022-02-24 19:09:55 -0800 | |
commit | d1eba784b9d902ac6043c1b76e64382d43fbc261 (patch) | |
tree | b711a3f5624817496b0071721634dad8bdc50e4a /src/api/schema.d.ts | |
parent | ead77e074d0cfb3d170a243140cce564a4f287a5 (diff) | |
download | bun-d1eba784b9d902ac6043c1b76e64382d43fbc261.tar.gz bun-d1eba784b9d902ac6043c1b76e64382d43fbc261.tar.zst bun-d1eba784b9d902ac6043c1b76e64382d43fbc261.zip |
Add WASM modules but disable it for now
Diffstat (limited to 'src/api/schema.d.ts')
-rw-r--r-- | src/api/schema.d.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/api/schema.d.ts b/src/api/schema.d.ts index 64bd2eff6..d8129fd27 100644 --- a/src/api/schema.d.ts +++ b/src/api/schema.d.ts @@ -21,6 +21,7 @@ export enum Loader { file = 6, json = 7, toml = 8, + wasm = 9, } export const LoaderKeys = { 1: "jsx", @@ -39,6 +40,8 @@ export const LoaderKeys = { json: "json", 8: "toml", toml: "toml", + 9: "wasm", + wasm: "wasm", }; export enum FrameworkEntryPointType { client = 1, |