lr-i18n
Version:
Allows to connect your `Laravel` Framework localization files with `React`.
18 lines (17 loc) • 359 B
TypeScript
interface ConfigInterface {
langDirname?: string;
typeDestinationPath?: string;
typeTranslationKeys?: boolean;
}
/**
*
*/
export default function i18n(config?: ConfigInterface): {
name: string;
enforce: string;
config(): void;
buildEnd: () => void;
handleHotUpdate(ctx: any): void;
configureServer(): void;
};
export {};