Files
skills-here-run-place/node_modules/superjson/dist/double-indexed-kv.d.ts
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

9 lines
231 B
TypeScript

export declare class DoubleIndexedKV<K, V> {
keyToValue: Map<K, V>;
valueToKey: Map<V, K>;
set(key: K, value: V): void;
getByKey(key: K): V | undefined;
getByValue(value: V): K | undefined;
clear(): void;
}