mirror of
https://github.com/langgenius/webapp-conversation.git
synced 2025-12-18 03:26:38 +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
|
|
}
|