8 lines
162 B
TypeScript
8 lines
162 B
TypeScript
|
|
export interface IGroupingStore<T = unknown> {
|
||
|
|
getByIds(ids: string[]): T[];
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface IStoreRegistry {
|
||
|
|
get(type: string): IGroupingStore;
|
||
|
|
}
|