UNPKG

vue-i18n-extract

Version:

Manage vue-i18n localization with static analysis

5 lines (4 loc) 349 B
/// <reference types="node" /> import { I18NItemWithBounding, I18NLanguage, I18NReport } from '../types'; export declare function extractI18NReport(vueItems: I18NItemWithBounding[], languageFiles: I18NLanguage): I18NReport; export declare function writeReportToFile(report: I18NReport, writePath: string): Promise<NodeJS.ErrnoException | void>;