UNPKG

@polkadot/util

Version:
6 lines (5 loc) 199 B
/** * @name objectSpread * @summary Concats all sources into the destination */ export declare function objectSpread<T extends object>(dest: object, ...sources: (object | undefined | null)[]): T;