UNPKG

@quinck/collections

Version:

Allows extra operations on JavaScript collections: Array, Map and Set.

11 lines (10 loc) 226 B
export {}; declare global { interface Set<T> { /** * Creates a new Array with all the elements of the Set. * @returns an Array with the Set values */ toArray(): Array<T>; } }