laravel-vue-i18n
Version:
allows to connect your `Laravel` Framework localization files with `Vue`.
9 lines (8 loc) • 615 B
TypeScript
import { ParsedLangFileInterface } from './interfaces/parsed-lang-file';
export declare const hasPhpTranslations: (folderPath: string) => boolean;
export declare const parseAll: (folderPath: string) => ParsedLangFileInterface[];
export declare const parse: (content: string) => {};
export declare const reset: (folderPath: any) => void;
export declare const readThroughDir: (dir: any) => {};
export declare const prepareExtendedParsedLangFiles: (langPaths: string[]) => ParsedLangFileInterface[];
export declare const generateFiles: (langPath: string, data: ParsedLangFileInterface[]) => ParsedLangFileInterface[];