UNPKG

@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) 556 B
export type ParsedInputs = 'help' | 'version' | { enableAOT: boolean; aotCache: string; enableHttpCache: boolean; enableExperimentalHighResolutionTimeMethods: boolean; moduleMode: boolean; bundle: boolean; enableStackTraces: boolean; excludeSources: boolean; debugIntermediateFilesDir: string | undefined; wasmEngine: string; wevalBin: string | undefined; input: string; output: string; env: Record<string, string>; }; export declare function parseInputs(cliInputs: string[]): Promise<ParsedInputs>;