2 Matching Annotations
- Nov 2021
-
-
Alternatively, you could create a weak relationship: interface WeakHashmap<V> { [key: string]: V[keyof V]; }
-
type Hashmap<K, V> = { [k in K]: V; }
-
Alternatively, you could create a weak relationship: interface WeakHashmap<V> { [key: string]: V[keyof V]; }
type Hashmap<K, V> = { [k in K]: V; }