Refactors calendar project structure and build configuration
Consolidates V2 codebase into main project directory Updates build script to support simplified entry points Removes redundant files and cleans up project organization Simplifies module imports and entry points for calendar application
This commit is contained in:
parent
9f360237cf
commit
863b433eba
200 changed files with 2331 additions and 16193 deletions
4
src/core/IGroupingStore.ts
Normal file
4
src/core/IGroupingStore.ts
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
export interface IGroupingStore<T = unknown> {
|
||||
readonly type: string;
|
||||
getByIds(ids: string[]): T[];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue