/** ## NonEmptyArr : 非空数组 @category Gymnastics */ export type NonEmptyArr = [T, ...T[]]; export type EmptyArr = []; //# sourceMappingURL=arr.d.ts.map