import { CustomItemComponent } from './CustomItemTypes'; export class CustomItemRegistry { private definitions: Map> = new Map(); define(type: T, component: CustomItemComponent): this { this.definitions.set(type, component); return this; } get(type: string): CustomItemComponent | undefined { return this.definitions.get(type); } }