New renders+css

This commit is contained in:
Janus C. H. Knudsen 2025-12-06 01:22:04 +01:00
parent 73e284660f
commit b3f47e93e8
22 changed files with 763 additions and 3 deletions

View file

@ -0,0 +1,7 @@
export interface IGroupingStore<T = unknown> {
getByIds(ids: string[]): T[];
}
export interface IStoreRegistry {
get(type: string): IGroupingStore;
}