UNPKG

@vercel/node

Version:
12 lines (11 loc) 686 B
import { Files, PrepareCacheOptions, BuildOptions, StartDevServerOptions, StartDevServerResult, shouldServe } from '@vercel/build-utils'; export { shouldServe }; export { NowRequest, NowResponse, VercelRequest, VercelResponse, } from './types'; export * from './types'; export declare const version = 3; export declare function build({ files, entrypoint, workPath, repoRootPath, config, meta, }: BuildOptions): Promise<{ output: import("@vercel/build-utils").Lambda; watch: string[]; }>; export declare function prepareCache({ workPath, }: PrepareCacheOptions): Promise<Files>; export declare function startDevServer(opts: StartDevServerOptions): Promise<StartDevServerResult>;