/** * 将一个或多个源对象复制到目标对象中 * * @param {object} target 目标对象 * @return {boolean} */ declare const assign: (target: any) => any; export default assign;