export type WebComponentBaseConfig = { app: string; version: string; name?: string; description?: string; company?: string; componentPath?: string; selector: string; appId?: string; link?: string; appConfigPath?: string; icon?: string; logo?: string; pwa?: { desc?: string; color?: string; bgcolor?: string; }; }; export type WebComponentConfigWithSpecificComponent = WebComponentBaseConfig & { componentName: string; }; export type WebComponentConfig = WebComponentConfigWithSpecificComponent & { selector: string; className: string; componentFileName?: string; timestamp?: string; }; //# sourceMappingURL=type.d.ts.map