@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.
13 lines (11 loc) • 408 B
text/typescript
import type { GetIssueSourceResponse } from './getIssueSourceResponse';
export interface GetPlanResponseForPage {
/** The plan ID. */
id: string;
/** The issue sources included in the plan. */
issueSources?: GetIssueSourceResponse[];
/** The plan name. */
name: string;
/** The plan status. This is "Active", "Trashed" or "Archived". */
status: 'Active' | 'Trashed' | 'Archived' | string;
}