Files
webapp-conversation/types/base.ts
2024-01-26 18:06:04 +08:00

6 lines
90 B
TypeScript

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