UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

6 lines (4 loc) 157 B
declare function runAsync<F extends (...args: any[]) => any>( func: F, ): (...args: Parameters<F>) => Promise<Awaited<ReturnType<F>>>; export = runAsync;