A container for the watch status of a list of issues.

interface BulkIssueIsWatching {
    issuesIsWatching?: {
        [key: string]: boolean;
    };
}

Properties

issuesIsWatching?: {
    [key: string]: boolean;
}

The map of issue ID to boolean watch status.