From 14686d40dced0e927202e869d0dfc16e5c33abc7 Mon Sep 17 00:00:00 2001 From: Yuta Saito Date: Thu, 7 Dec 2023 21:32:04 +0900 Subject: [PATCH] feat: Export WASI definitions including constants and types (#57) This allows users to implements their own `Fd` interface. --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 51b0725..be6c415 100644 --- a/src/index.ts +++ b/src/index.ts @@ -10,3 +10,4 @@ export { PreopenDirectory, } from "./fs_fd.js"; export { strace } from "./strace.js"; +export * as wasi from "./wasi_defs.js";