Calendar/src/v2/core/IGroupingStore.ts

8 lines
162 B
TypeScript
Raw Normal View History

2025-12-06 01:22:04 +01:00
export interface IGroupingStore<T = unknown> {
getByIds(ids: string[]): T[];
}
export interface IStoreRegistry {
get(type: string): IGroupingStore;
}