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.

15 lines (13 loc) 475 B
import type { ProjectId } from './projectId'; /** * @deprecated See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/changelog/#CHANGE-2298) * for details.* * * Use the optional `workflows.usages` expand to get additional information about the projects and issue types * associated with the requested workflows. */ export interface ProjectIssueTypes { project?: ProjectId; /** IDs of the issue types */ issueTypes?: string[]; }