Files
number_zj/20220330_Vote/Ewide.Web.Entry/wwwroot/lib/xe-utils/union.d.ts
毛财君 197b38ca6f 1
2023-07-06 17:37:33 +08:00

14 lines
244 B
TypeScript

/**
* 将多个数的值返回唯一的并集数组
* @param array 数组
*/
export declare function union(...array: any[]): any[];
declare module './ctor' {
interface XEUtilsMethods {
union: typeof union;
}
}
export default union