export interface IGroupingStore { getByIds(ids: string[]): T[]; } export interface IStoreRegistry { get(type: string): IGroupingStore; }