UNPKG

lr-i18n

Version:

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

9 lines (8 loc) 246 B
/** * The Interface that is responsible for the Options provided. */ export default interface OptionsInterface { fallbackLocale?: string; locale?: string; files: Record<string, unknown> | Record<string, () => Promise<unknown>>; }