UNPKG

@n3okill/utils

Version:
7 lines (6 loc) 201 B
/** * Combine multiple arrays into a single one * @param arrays The arrays to be combined * @returns Combined array */ export declare function combine<T>(...arrays: Array<Array<T> | T>): Array<T>;