UNPKG

lr-i18n

Version:

Allows to connect your `Laravel` Framework localization files with `React`.

10 lines (9 loc) 272 B
/** * The Interface that is responsible for the default options. */ export default interface DefaultOptionsInterface { fallbackLocale: string; locale: string; prevLocale: string; files: Record<string, unknown> | Record<string, () => Promise<unknown>>; }