Type alias WASIFile

WASIFile: {
    path: WASIPath;
    timestamps: WASITimestamps;
} & ({
    content: string;
    mode: "string";
} | {
    content: Uint8Array;
    mode: "binary";
})

Type declaration

Generated using TypeDoc