//#region src/array/difference.d.ts /** * Creates an array of unique values that are in the first array but not in the other arrays * @param array The array to process * @param arrays The arrays to exclude * @returns A new array of unique values * @example * difference([1, 2, 3], [2, 3, 4]); // [1] * difference([1, 2, 3, 4], [2, 4], [3]); // [1] */ declare function difference(array: T[], ...arrays: T[][]): T[]; //#endregion export { difference }; //# sourceMappingURL=difference.d.cts.map