Update app and tooling

This commit is contained in:
Lawrence Chen 2026-01-29 17:36:26 -08:00
parent 3046531bdd
commit e620ec7349
4950 changed files with 2975120 additions and 10 deletions

12
node_modules/@vercel/fun/dist/src/index.d.ts generated vendored Normal file
View file

@ -0,0 +1,12 @@
import { Lambda, LambdaParams, InvokeParams, InvokeResult } from './types';
import * as providers from './providers';
import { funCacheDir, runtimes, initializeRuntime } from './runtimes';
export { Lambda, LambdaParams, InvokeParams, InvokeResult, runtimes, providers, funCacheDir, initializeRuntime };
export declare class ValidationError extends Error {
reserved?: string[];
constructor(message?: string);
}
export declare function createFunction(params: LambdaParams): Promise<Lambda>;
export declare function invoke(fn: Lambda, params: InvokeParams): Promise<InvokeResult>;
export declare function destroy(fn: Lambda): Promise<void>;
export declare function cleanCacheDir(): Promise<void>;