2025-04-11 08:14:27 +08:00

6 lines
90 B
TypeScript

export type TypeWithI18N<T = string> = {
'en_US': T
'zh_Hans': T
[key: string]: T
}