Calendar/wwwroot/js/configurations/TimeFormatConfig.d.ts

11 lines
223 B
TypeScript
Raw Normal View History

2026-02-03 00:02:25 +01:00
/**
* Time format configuration settings
*/
export interface ITimeFormatConfig {
timezone: string;
use24HourFormat: boolean;
locale: string;
dateFormat: 'locale' | 'technical';
showSeconds: boolean;
}