import type { ArtifactDeploymentsList } from '../schemas/ArtifactDeploymentsList'; import type { DeploymentStats } from '../schemas/DeploymentStats'; /** * Docker Artifact deployments Details */ export interface ArtifactDeploymentsDetails { deployments: ArtifactDeploymentsList; deploymentsStats?: DeploymentStats; }