6 lines
90 B
TypeScript
6 lines
90 B
TypeScript
export type TypeWithI18N<T = string> = {
|
|
'en_US': T
|
|
'zh_Hans': T
|
|
[key: string]: T
|
|
}
|