laravel-vue-i18n
Version:
allows to connect your `Laravel` Framework localization files with `Vue`.
12 lines (11 loc) • 315 B
TypeScript
import { OptionsInterface } from './options';
/**
* The Interface that is responsible for the Options provided.
*/
export interface PluginOptionsInterface extends OptionsInterface {
shared?: boolean;
}
export interface VitePluginOptionsInterface {
langPath?: string;
additionalLangPaths?: string[];
}