You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
316 B
12 lines
316 B
/**
|
|
* @see 参考 https://github.com/mbostock/internmap/blob/main/src/index.js
|
|
*/
|
|
export declare class InternMap<K, V> extends Map {
|
|
private map;
|
|
private initKey;
|
|
constructor(entries: any);
|
|
get(key: K): any;
|
|
has(key: K): boolean;
|
|
set(key: K, value: V): this;
|
|
delete(key: K): boolean;
|
|
}
|
|
|