@awesome-fe/translate
Version:
Translation utils
15 lines (14 loc) • 358 B
TypeScript
export declare class DictEntryEntity {
id: number;
path: string;
filename: string;
xpath: string;
english: string;
chinese: string;
confidence: DictEntryConfidence;
isRegExp: boolean;
createdAt: Date;
updatedAt: Date;
}
declare type DictEntryConfidence = 'Manual' | 'DictAccurate' | 'DictFuzzy' | 'Engine';
export {};