WXL
9 天以前 2895b4ea66e09cb355aeb4e030ca0de297bf8ce3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export declare type ReportOptions = {
    vueFiles: string;
    languageFiles: string;
    output?: string;
    add?: boolean;
    dynamic?: number;
};
export declare type SimpleFile = {
    fileName: string;
    path: string;
    content: string;
};
export declare type I18NItem = {
    line?: number;
    path: string;
    file?: string;
    language?: string;
};
export declare type I18NLanguage = {
    [language: string]: I18NItem[];
};
export declare type I18NReport = {
    missingKeys?: I18NItem[];
    unusedKeys?: I18NItem[];
    dynamicKeys?: I18NItem[];
};