/** * http://stackoverflow.com/a/34749873 * * Deep merge two objects. * @param target * @param ...sources */ export default function mergeDeep(target: any, ...sources: any[]): any;