Skip to content

Commit

Permalink
Fixed deno imports
Browse files Browse the repository at this point in the history
  • Loading branch information
syrusakbary committed Dec 7, 2021
1 parent df9dc71 commit aaa4216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wasi.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @deno-types="./pkg/wasmer_wasi_js.d.ts"
import baseInit, { WASI, InitInput } from "./pkg/wasmer_wasi_js.js";
// @deno-types="./pkg/wasmer_wasi_js.d.ts"
export { WASI, MemFS, JSVirtualFile, WasmerRuntimeError, InitInput } from "./pkg/wasmer_wasi_js.js";
export { WASI, MemFS, JSVirtualFile, WasmerRuntimeError } from "./pkg/wasmer_wasi_js.js";

let inited: Promise<any> | null = null;
export const init = async (input?: InitInput | Promise<InitInput>, force?: boolean) => {
Expand Down

0 comments on commit aaa4216

Please sign in to comment.