/** * Nebula system config */ export interface ICoreSystemConfig { } /** * Nebula core config */ export interface ICoreConfig { /** * Application version */ applicationVersion?: string; /** * Platform version */ kubernetesVersion?: string; /** * Chart version */ chartVersion: string; /** * Nebula system config */ system: ICoreSystemConfig; /** * Nebula base path that everything is relative from */ basePath: string; }