Counts of the number of issues in various statuses.

interface VersionIssuesStatus {
    done?: number;
    inProgress?: number;
    toDo?: number;
    unmapped?: number;
}

Properties

done?: number

Count of issues with status done.

inProgress?: number

Count of issues with status in progress.

toDo?: number

Count of issues with status to do.

unmapped?: number

Count of issues with a status other than to do, in progress, and done.