Files
number_zj/20220330_Vote/Ewide.Web.Entry/wwwroot/lib/xe-utils/unzip.d.ts
毛财君 197b38ca6f 1
2023-07-06 17:37:33 +08:00

14 lines
212 B
TypeScript

/**
* 与 zip 相反
* @param arrays 数组
*/
export declare function unzip(arrays: any[]): any[];
declare module './ctor' {
interface XEUtilsMethods {
unzip: typeof unzip;
}
}
export default unzip