UNPKG

@extra-array/size

Version:
11 lines (10 loc) 305 B
declare module "@extra-array/size" { /** * Counts the number of values. * @param x an array * @param i start index (-ve: from right) (0) * @param I end index (-ve: from right) (X) */ declare function size<T>(x: T[], i?: number, I?: number): number; export = size; //# sourceMappingURL=size.d.ts.map}