/** * returns an array with all the duplicates from the provided array removed * @example * uniq([1, 1, 2, 3, 3]) * // returns [1, 2, 3] */ export default function uniq(arr: T[]): T[]; //# sourceMappingURL=uniq.d.ts.map