UNPKG

@extra-array/fill

Version:
12 lines (11 loc) 285 B
declare module "@extra-array/fill" { /** * Fills with given value. * @param x an array * @param v value * @param i start index (0) * @param I end index (X) */ declare function fill<T>(x: T[], v: T, i?: number, I?: number): T[]; export = fill; //# sourceMappingURL=fill.d.ts.map}