import { ApplicationInterface, ApplicationLanguagePacks, ApplicationTypes, GitRepositoryInterface } from "../ApplicationTypes"; interface GitProject { id: string; } interface GitRepository extends GitRepositoryInterface { repositoryKey: string; gitProject: GitProject; } export interface EditApplication extends ApplicationInterface { description: string; defaultBranch: string; applicationType: ApplicationTypes; languagePack: ApplicationLanguagePacks; hasIngress: boolean; gitRepository: GitRepository; } export interface EditApplicationOptions { configure?: boolean; } export {};