@fastly/js-compute
Version:
JavaScript SDK and CLI for building JavaScript applications on [Fastly Compute](https://www.fastly.com/products/edge-compute/serverless).
18 lines (17 loc) • 579 B
TypeScript
export type CompileApplicationToWasmParams = {
input: string;
output: string;
wasmEngine: string;
enableHttpCache: boolean;
enableExperimentalHighResolutionTimeMethods: boolean;
enableAOT: boolean;
aotCache: string;
enableStackTraces: boolean;
excludeSources: boolean;
debugIntermediateFilesDir: string | undefined;
wevalBin: string | undefined;
moduleMode: boolean;
doBundle: boolean;
env: Record<string, string>;
};
export declare function compileApplicationToWasm(params: CompileApplicationToWasmParams): Promise<void>;