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