faastjs
Version:
Serverless batch computing made simple.
10 lines (9 loc) • 315 B
TypeScript
/**
* This file is unused at runtime, but needs to exist to allow webpack to work
* properly for local mode.
*/
import { FunctionCall, Wrapper } from "../wrapper";
export declare const filename: string;
export declare function makeTrampoline(wrapper: Wrapper): {
trampoline: (call: FunctionCall) => void;
};