@kahi-ui/framework
Version:
Straight-forward Svelte UI for the Web
34 lines (33 loc) • 1.66 kB
TypeScript
export declare const DEFAULT_CALENDAR: string;
export declare const DEFAULT_LOCALE: string;
export declare const DEFAULT_TIMEZONE: string;
export declare const DEFAULT_DAY: "numeric" | "2-digit" | undefined;
export declare const DEFAULT_MONTH: "long" | "short" | "numeric" | "2-digit" | "narrow" | undefined;
export declare const DEFAULT_WEEKDAY: "long" | "short" | "narrow" | undefined;
export declare const DEFAULT_YEAR: "numeric" | "2-digit" | undefined;
export declare const DEFAULT_HOUR: "numeric" | "2-digit" | undefined;
export declare const DEFAULT_HOUR_12: boolean | undefined;
export declare const DEFAULT_MINUTE: "numeric" | "2-digit" | undefined;
export declare const DEFAULT_SECOND: "numeric" | "2-digit" | undefined;
export declare const DEFAULT_FORMAT_DATE: {
day: "numeric" | "2-digit" | undefined;
month: "long" | "short" | "numeric" | "2-digit" | "narrow" | undefined;
weekday: "long" | "short" | "narrow" | undefined;
year: "numeric" | "2-digit" | undefined;
};
export declare const DEFAULT_FORMAT_TIME: {
hour: "numeric" | "2-digit" | undefined;
hour_12: boolean | undefined;
minute: "numeric" | "2-digit" | undefined;
second: "numeric" | "2-digit" | undefined;
};
export declare const DEFAULT_FORMAT_DATETIME: {
hour: "numeric" | "2-digit" | undefined;
hour_12: boolean | undefined;
minute: "numeric" | "2-digit" | undefined;
second: "numeric" | "2-digit" | undefined;
day: "numeric" | "2-digit" | undefined;
month: "long" | "short" | "numeric" | "2-digit" | "narrow" | undefined;
weekday: "long" | "short" | "narrow" | undefined;
year: "numeric" | "2-digit" | undefined;
};