UNPKG

laravel-vue-i18n

Version:

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

10 lines (9 loc) 190 B
/** * The Interface that is responsible for a parsed lang file. */ export interface ParsedLangFileInterface { name: string; translations: { [key: string]: string; }; }