/** * This function take 2 objects and merge the second one to the first one * * @param {object} object The main object * @param {object} data The object to be merged * */ export function assign(object: object, data: object): void;