Preview:ts class TMap<Key, Value> implements Map<Key, Value> { #map: Map<Key, Value> constructor( mapConstructor: ConstructorParameters< typeof Map<Key, Value> > ) { this.#map = new Map<Key, Value>( mapConstructor as ConstructorParameters< typeof Map ...
You can choose specific lines to embed by selecting them before copying the link.