mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
9 lines
146 B
TypeScript
9 lines
146 B
TypeScript
export type TranslatePair = {
|
|
[key: string]: string | string[] | TranslatePair
|
|
}
|
|
|
|
export type Language = {
|
|
name: string
|
|
el: TranslatePair
|
|
}
|