mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-09 12:57:46 +00:00
17 lines
552 B
TypeScript
17 lines
552 B
TypeScript
import { Bridge } from './bridge';
|
|
import { LauncherConfiguration } from './types';
|
|
export declare function makeVercelLauncher(
|
|
config: LauncherConfiguration
|
|
): string;
|
|
export declare function getVercelLauncher({
|
|
entrypointPath,
|
|
helpersPath,
|
|
shouldAddHelpers,
|
|
}: LauncherConfiguration): () => Bridge;
|
|
export declare function makeAwsLauncher(config: LauncherConfiguration): string;
|
|
export declare function getAwsLauncher({
|
|
entrypointPath,
|
|
awsLambdaHandler,
|
|
}: LauncherConfiguration): (e: any, context: any, callback: any) => any;
|
|
export {};
|