Introduces dependency injection container and composition root Adds core services like DateService and NavigationAnimator Simplifies CalendarOrchestrator with improved store handling Implements mock stores and demo application for V2 calendar
7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
export interface ITimeFormatConfig {
|
|
timezone: string;
|
|
use24HourFormat: boolean;
|
|
locale: string;
|
|
dateFormat: 'locale' | 'technical';
|
|
showSeconds: boolean;
|
|
}
|