Adds core calendar package components including: - Base services for events, resources, and settings - Calendar app and orchestrator - Build and bundling configuration - IndexedDB storage setup Prepares foundational architecture for calendar functionality
4 lines
110 B
TypeScript
4 lines
110 B
TypeScript
export interface IGroupingStore<T = unknown> {
|
|
readonly type: string;
|
|
getByIds(ids: string[]): T[];
|
|
}
|