/** A container for the watch status of a list of issues. */
export interface BulkIssueIsWatching {
  /** The map of issue ID to boolean watch status. */
  issuesIsWatching?: unknown;
}
