export interface IUiConfig { authenticationType: string; baseUriPath: string; flags: IFlags; name: string; slogan: string; unleashUrl: string; version: string; versionInfo: IVersionInfo; links: ILinks[]; disablePasswordAuth?: boolean; } export interface IFlags { C: boolean; P: boolean; E: boolean; } export interface IVersionInfo { instanceId: string; isLatest: boolean; latest: Partial; current: IVersion; } export interface IVersion { oss: string; enterprise: string; } export interface ILinks { value: string; icon: string; href: string; title: string; }