UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

16 lines (15 loc) 347 B
/** * Get the build for the function * @param functionId * @returns */ declare function getBuild(functionId: string): Promise<string>; /** * Mark all builds as old */ declare function markAllBuildAsOld(): void; export declare const NodeEsBuild: { getBuild: typeof getBuild; markAllBuildAsOld: typeof markAllBuildAsOld; }; export {};