union.d.ts 244 B

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