UNPKG

257 BTypeScriptView Raw
1/**
2 * 将多个数的值返回唯一的并集数组
3 * @param array 数组
4 */
5export declare function union(...array: any[]): any[];
6
7declare module './ctor' {
8 interface XEUtilsMethods {
9 union: typeof union;
10 }
11}
12
13export default union