UNPKG

laravel-i18n-react

Version:

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

9 lines (8 loc) 244 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>>; }