UNPKG

laravel-i18n-react

Version:

A Vite plugin to load Laravel localization files and provide them to React applications.

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>>; }