/** * Returns only the unique elements in array. * If you want the duplicates use: pure-fun/arrays/duplicates.ts */ declare const unique: (arr: any[]) => any[]; export default unique;