wv-gotcha
Version:
 wv-local-service-bus # Purpose To accumulate your walkthroughs to accomplish your common tasks with less effort.
22 lines • 696 B
TypeScript
/**
* Contains the relative path of an item, which is either a file or a folder along with the
* property 'type' to indicate whether it's a file or a folder.
*/
export declare class TranslationItem {
itemType: "file" | "folder";
relativePath: string;
}
/**
* Contains a title to be selected by the user mapped to specific TranslationItems.
.* Each item could be a single file or a folder.
*/
export declare class TranslationMapping {
title: string;
templateDirName: string;
translationItems: TranslationItem[];
fileRelPathPatternsToIgnore?: [];
}
export declare class TranslationMap {
mappings: TranslationMapping[];
}
//# sourceMappingURL=TranslationMap.d.ts.map