declare module "@extra-array/repeat" { /** * Repeats an array given times. * @param x an array * @param n times (1) */ declare function repeat(x: Iterable, n?: number): T[]; export = repeat; //# sourceMappingURL=repeat.d.ts.map}