export interface VProjectInfo { colorfulLogoUrl: string; copyright: string; faviconUrl: string; gateway: string; headerStyle: VHeaderStyle[]; maxLogoUrl: string; miniLogoUrl: string; profileList: VProfile[]; projectName: string; showAllMenu: boolean; tucaoUrl: string; } export interface VProfile { icon: string; name: string; url: string; } export interface VHeaderStyle { icon: string; label: string; value: string; }