UNPKG

415 BTypeScriptView Raw
1import { RegistryEntries } from './Registry';
2export declare class RegistryMap<T> {
3 protected readonly map: Map<string, T[]>;
4 constructor(entries?: RegistryEntries<T[]>);
5 readonly keys: string[];
6 clear(): void;
7 register(key: string, value: T): void;
8 remove(key: string, value: T): void;
9 reset(key: string): void;
10 resolve(key: string): T[];
11}
12//# sourceMappingURL=RegistryMap.d.ts.map
\No newline at end of file