faastjs
Version:
Serverless batch computing made simple.
9 lines (8 loc) • 391 B
TypeScript
import { SNSEvent } from "aws-lambda/trigger/sns";
import { Context } from "aws-lambda/handler";
import { FunctionCall, Wrapper } from "../wrapper";
export declare const filename: string;
export declare const INVOCATION_TEST_QUEUE = "*test*";
export declare function makeTrampoline(wrapper: Wrapper): {
trampoline: (event: FunctionCall | SNSEvent, context: Context) => Promise<void>;
};