UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

8 lines (7 loc) 226 B
/** * Combine two objects into one. If both objects have the same key, the value of the second object will be used. * @param a * @param b * @returns */ export declare function combineObject<T>(a: T, b: T): T | undefined;