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.

13 lines (12 loc) 259 B
export interface Sprint { id: number; self?: string; state: 'future' | 'active' | 'closed' | string; name: string; startDate?: string; endDate?: string; completeDate?: string; createdDate?: string; originBoardId?: number; goal?: string; }