diff options
author | 2022-02-27 23:20:10 -0800 | |
---|---|---|
committer | 2022-02-27 23:20:10 -0800 | |
commit | 50560e169ca39c0b4ec163cb32897baf7620aa69 (patch) | |
tree | 83eb721bfd4a0318874c1f69d254a4fd9446512b /src/jsc_stub.zig | |
parent | 36c249e9c1fc6e0000d23ae0055eed54a5437c74 (diff) | |
download | bun-50560e169ca39c0b4ec163cb32897baf7620aa69.tar.gz bun-50560e169ca39c0b4ec163cb32897baf7620aa69.tar.zst bun-50560e169ca39c0b4ec163cb32897baf7620aa69.zip |
WASM
Diffstat (limited to 'src/jsc_stub.zig')
-rw-r--r-- | src/jsc_stub.zig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/jsc_stub.zig b/src/jsc_stub.zig new file mode 100644 index 000000000..34069b04a --- /dev/null +++ b/src/jsc_stub.zig @@ -0,0 +1,10 @@ +// For WASM builds +pub const C = struct {}; +pub const WebCore = struct {}; +pub const Jest = struct {}; +pub const API = struct { + pub const Transpiler = struct {}; +}; +pub const Node = struct {}; + +pub const VirtualMachine = struct {}; |