NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/xe-utils/methods/object/assign.d.ts

22 lines
498 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
import { XEUtilsMethods } from '../xe-utils'
/**
*
* @param target
* @param sources
*/
export declare function assign(target: any, ...sources: any[]): any;
declare module '../xe-utils' {
interface XEUtilsMethods {
/**
*
* @param target
* @param sources
*/
assign: typeof assign;
}
}
export default assign