UNPKG

wv-gotcha

Version:

![](https://raw.githubusercontent.com/wV-software/icons/main/Wv/Product%20Icon/wv_128x128.png) wv-local-service-bus # Purpose To accumulate your walkthroughs to accomplish your common tasks with less effort.

22 lines 696 B
/** * 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