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) 360 B
export interface GetIssueSourceResponse { /** The issue source type. This is "Board", "Project" or "Filter". */ type: 'Board' | 'Project' | 'Filter' | 'Custom' | string; /** * The issue source value. This is a board ID if the type is "Board", a project ID if the type is "Project" or a * filter ID if the type is "Filter". */ value: number; }