UNPKG

@cnamts/vue-dot

Version:

Implementation of our Design System for the French Health Insurance

16 lines (12 loc) 287 B
import { IndexedObject } from '../../types'; export interface Language { direction: string; name: string; nativeName: string; } export type Languages = IndexedObject<Language>; export type AllLanguagesChar = '*'; export interface CurrentLangData { name: string; label: string; }