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.

8 lines (7 loc) 255 B
/** Details of the association between an issue type scheme and project. */ export interface IssueTypeSchemeProjectAssociation { /** The ID of the issue type scheme. */ issueTypeSchemeId: string; /** The ID of the project. */ projectId: string; }