Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/wapython
Path: blob/main/core/wasi-js/src/index.ts
1067 views
1
import WASI, { SOCKET_DEFAULT_RIGHTS } from "./wasi";
2
export default WASI;
3
export { SOCKET_DEFAULT_RIGHTS };
4
export type { WASIBindings, WASIConfig, WASIFileSystem } from "./types";
5
export type { FileSystemSpec } from "./fs";
6
export { createFileSystem } from "./fs";
7
import * as constants from "./constants";
8
export { constants };
9
10