unzip.d.ts 212 B

12345678910111213
  1. /**
  2. * 与 zip 相反
  3. * @param arrays 数组
  4. */
  5. export declare function unzip(arrays: any[]): any[];
  6. declare module './ctor' {
  7. interface XEUtilsMethods {
  8. unzip: typeof unzip;
  9. }
  10. }
  11. export default unzip