mirror of
https://github.com/langgenius/dify.git
synced 2026-03-25 04:49:47 +08:00
12 lines
289 B
TypeScript
12 lines
289 B
TypeScript
import type { namespaces } from '../i18n-config/i18next-config'
|
|
import 'i18next'
|
|
|
|
declare module 'i18next' {
|
|
// eslint-disable-next-line ts/consistent-type-definitions
|
|
interface CustomTypeOptions {
|
|
defaultNS: 'common'
|
|
resources: typeof namespaces
|
|
keySeparator: false
|
|
}
|
|
}
|