UNPKG

@esm-js/jira.js

Version:

A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.

9 lines (8 loc) 288 B
/** Issue Bulk Watch Or Unwatch Payload */ export interface IssueBulkWatchOrUnwatchPayload { /** * List of issue IDs or keys which are to be bulk watched or unwatched. These IDs or keys can be from different * projects and issue types. */ selectedIssueIdsOrKeys: string[]; }