mirror of
https://github.com/langgenius/webapp-conversation.git
synced 2025-12-08 17:32:27 +08:00
6 lines
90 B
TypeScript
6 lines
90 B
TypeScript
export type TypeWithI18N<T = string> = {
|
|
'en_US': T
|
|
'zh_Hans': T
|
|
[key: string]: T
|
|
}
|