export interface Registry { register(name: string, element: T): any; getByName(name: string): T; getAll(): T[]; }