UNPKG

sequins

Version:

Mutable sequences and native data structures (Map, Set, List) following the Immutable.js API

5 lines (4 loc) 178 B
export const NativeMapConstructor: MapConstructor; export const NativeSetConstructor: SetConstructor; export type NativeMap<K, V> = Map<K, V>; export type NativeSet<V> = Set<V>;