UNPKG

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