@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
36 lines (35 loc) • 904 B
TypeScript
type DatepickerSupportedLocale = "en-gb" | "nb-no" | "sv-se";
export type BifrostSupportedLocale = "en-us" | "nb-no" | "sv-se";
declare const enUS: {
locale: BifrostSupportedLocale;
dateOptions: {
locale: DatepickerSupportedLocale;
date: Intl.DateTimeFormatOptions;
time: Intl.DateTimeFormatOptions;
relativeTime: Intl.RelativeTimeFormatOptions;
};
collapse: string;
expand: string;
closeMessage: string;
closeModal: string;
back: string;
next: string;
prev: string;
previous: string;
goTo: string;
page: string;
last: string;
first: string;
of: string;
required: string;
optional: string;
row: string;
search: string;
mainNav: string;
skipToMain: string;
closeMenu: string;
loading: string;
space: string;
};
export type BifrostLocale = typeof enUS;
export default enUS;