UNPKG

laravel-vue-i18n

Version:

allows to connect your `Laravel` Framework localization files with `Vue`.

12 lines (11 loc) 365 B
import { LanguageJsonFileInterface } from './language-json-file'; /** * The Interface that is responsible for the Options provided. */ export interface OptionsInterface { lang?: string; fallbackLang?: string; fallbackMissingTranslations?: boolean; resolve?(lang: string): Promise<LanguageJsonFileInterface>; onLoad?: (lang: string) => void; }