SourceTermAnalysisSystem_vue/node_modules/@antv/x6-common/lib/dictionary/dictionary.d.ts
2026-05-15 10:22:44 +08:00

13 lines
343 B
TypeScript

export declare class Dictionary<T extends Record<string, any>, V> {
private map;
private arr;
constructor();
clear(): void;
has(key: T): boolean;
get(key: T): V | undefined;
set(key: T, value: V): void;
delete(key: T): V | undefined;
each(iterator: (value: V, key: T) => void): void;
dispose(): void;
}