keycloak-demo-frontend/src/models/Core/I18n/types.d.ts

11 lines
165 B
TypeScript
Raw Normal View History

2021-09-06 10:00:03 +00:00
export interface LangObject {
[key: string]: string;
}
export interface LangListItem {
lang: string;
value: string;
}
export type LangList = LangListItem[];