UNPKG

281 BTypeScriptView Raw
1declare module "@extra-array/concat-update" {
2/**
3 * Appends values from arrays.
4 * @param x an array (updated)
5 * @param ys arrays to append
6 * @returns x
7 */
8declare function concat$<T>(x: T[], ...ys: Iterable<T>[]): T[];
9export = concat$;
10//# sourceMappingURL=concat$.d.ts.map}