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.

10 lines (9 loc) 291 B
/** Mapping of an issue type to a context. */ export interface IssueTypeToContextMapping { /** The ID of the context. */ contextId: string; /** The ID of the issue type. */ issueTypeId?: string; /** Whether the context is mapped to any issue type. */ isAnyIssueType?: boolean; }