UNPKG

@n3okill/utils

Version:
7 lines (6 loc) 220 B
/** * Return the intersection between arrays * @param args Multiple arrays to intersect * @returns The intersection of the multiple arrays */ export declare function intersect<T>(...args: Array<Array<T>>): Array<T>;