@team-supercharge/nest-amqp
Version:
AMQP 1.0 module for Nest framework
10 lines (9 loc) • 400 B
TypeScript
/**
* The source object's properties will be merged to the target object.
*
* @param {Record<string, any>} target Target object.
* @param {Record<string, any>} source Source object which will be merged to target object.
*
* @return {Record<string, any>} The merged object.
*/
export declare function extendObject(target: Record<string, any>, source: Record<string, any>): Record<string, any>;