UNPKG

@n3okill/utils

Version:
8 lines (7 loc) 272 B
/** * Merge multiple objects into the target * @param target The object to merge into * @param args The objects to be merged * @returns Return the target object with other arguments merged into it */ export declare function mixIn<T>(target: T, ...args: Array<T>): T;