interface ProjectCIDeployConfigBranch { 'host': string 'ones-check-id'?: string 'ones-check-point'?: string 'ones-plugin-id'?: string 'organization_uuid'?: string 'team_uuid'?: string 'username'?: string 'password'?: string } interface ProjectCIDeployConfig { [branch: string]: ProjectCIDeployConfigBranch | undefined } export type { ProjectCIDeployConfig, ProjectCIDeployConfigBranch }