/**
 * Information about a Helm release.
 */
export interface ReleaseInfo {
    firstDeployed: string;
    lastDeployed: string;
    deleted: string;
    description: string;
    status: string;
}
