WXL
3 天以前 2cc85c64f1c64a2dbaeae276a3e2ca8420de76b7
1
2
3
4
5
6
7
8
9
10
11
/// <reference types="node" />
import { I18NItem, I18NLanguage, I18NReport } from '../types';
export declare enum VueI18NExtractReportTypes {
    None = 0,
    Missing = 1,
    Unused = 2,
    Dynamic = 4,
    All = 7
}
export declare function extractI18NReport(parsedVueFiles: I18NItem[], parsedLanguageFiles: I18NLanguage, reportType?: VueI18NExtractReportTypes): I18NReport;
export declare function writeReportToFile(report: I18NReport, writePath: string): Promise<NodeJS.ErrnoException | void>;