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) 278 B
/** Details of a context to project association. */ export interface CustomFieldContextProjectMapping { /** The ID of the context. */ contextId: string; /** The ID of the project. */ projectId?: string; /** Whether context is global. */ isGlobalContext?: boolean; }