zip.d.ts 250 B

12345678910111213
  1. /**
  2. * 将每个数组中相应位置的值合并在一起
  3. * @param arrays 多个数组
  4. */
  5. export declare function zip(...arrays: any[]): any[];
  6. declare module './ctor' {
  7. interface XEUtilsMethods {
  8. zip: typeof zip;
  9. }
  10. }
  11. export default zip