UNPKG

@types/fbjs

Version:
10 lines (7 loc) 249 B
/** * Returns the distinct elements of an iterable. The result is an array whose * elements are ordered by first occurrence. */ declare function distinctArray<T>(xs: Iterable<T>): T[]; declare namespace distinctArray {} export = distinctArray;