11 lines
213 B
TypeScript
11 lines
213 B
TypeScript
|
|
/**
|
||
|
|
* Time format configuration settings
|
||
|
|
*/
|
||
|
|
export interface ITimeFormatConfig {
|
||
|
|
timezone: string;
|
||
|
|
use24HourFormat: boolean;
|
||
|
|
locale: string;
|
||
|
|
dateFormat: 'locale' | 'technical';
|
||
|
|
showSeconds: boolean;
|
||
|
|
}
|