UNPKG

316 BTypeScriptView Raw
1/**
2 * @see 参考 https://github.com/mbostock/internmap/blob/main/src/index.js
3 */
4export declare class InternMap<K, V> extends Map {
5 private map;
6 private initKey;
7 constructor(entries: any);
8 get(key: K): any;
9 has(key: K): boolean;
10 set(key: K, value: V): this;
11 delete(key: K): boolean;
12}