//#region src/array/intersection.d.ts /** * Creates an array of unique values that are included in all given arrays * @param arrays The arrays to process * @returns A new array of unique values present in all arrays * @example * intersection([1, 2, 3], [2, 3, 4]); // [2, 3] * intersection([1, 2, 3], [2, 3, 4], [2, 3, 5]); // [2, 3] */ declare function intersection(...arrays: T[][]): T[]; //#endregion export { intersection }; //# sourceMappingURL=intersection.d.cts.map