Skip to content

Commit

Permalink
Merge pull request #367 from wasmerio/fix-mismatched-stdin-type
Browse files Browse the repository at this point in the history
Fix mismatched stdin type
  • Loading branch information
Michael Bryan authored Dec 14, 2023
2 parents b4bb602 + 1dd52c9 commit 4677927
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
10 changes: 4 additions & 6 deletions examples/wasmer.sh/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type CommonOptions = {
/** Environment variables to set. */
env?: Record<string, string>;
/** The standard input stream. */
stdin?: string | ArrayBuffer;
stdin?: string | Uint8Array;
/**
* Directories that should be mounted inside the WASIX instance.
*
Expand Down

0 comments on commit 4677927

Please sign in to comment.