element-plus/packages/locale/index.ts

9 lines
146 B
TypeScript
Raw Normal View History

export type TranslatePair = {
[key: string]: string | string[] | TranslatePair
}
export type Language = {
name: string
el: TranslatePair
}