/** * 对象转换,将 origin 在 target 对象中存在的属性的属性值赋值到 target 对象中的同名属性上,对于在 origin 对象中存在的属性,而 target 对 * 象中不存在的属性,则不会进行赋值。 * * @param {Record} origin 原始对象 * @param {Record} target 目标对象 */ export declare const convert: (origin: Record, target: Record) => void; export type ConvertType = typeof convert;