Skip to content

Commit c763315

Browse files
Erase specific implementation type at the return type of DefaultRubyVM
1 parent cfd77f7 commit c763315

File tree

1 file changed

+1
-1
lines changed
  • packages/npm-packages/ruby-wasm-wasi/src

1 file changed

+1
-1
lines changed

packages/npm-packages/ruby-wasm-wasi/src/browser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { RubyVM } from "./index";
55
export const DefaultRubyVM = async (
66
rubyModule: WebAssembly.Module,
77
options: { consolePrint: boolean } = { consolePrint: true }
8-
) => {
8+
): Promise<{ vm: RubyVM, wasi: any, fs: any, instance: WebAssembly.Instance }> => {
99
const wasmFs = new WasmFs();
1010
const wasi = new WASI({
1111
bindings: {

0 commit comments

Comments
 (0)