UNPKG

371 BTypeScriptView Raw
1interface ComponentTarget {
2 inputs: string[];
3 outputDir?: string;
4 notFoundIsFatal: boolean;
5 translationsGlob: string;
6}
7export declare enum ComponentType {
8 DEVICE = "device",
9 COMPANION = "companion",
10 SETTINGS = "settings"
11}
12declare const componentTarget: {
13 [component in ComponentType]: ComponentTarget;
14};
15export default componentTarget;