UNPKG

@n3okill/utils

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