@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.
15 lines (14 loc) • 319 B
text/typescript
export interface PartiallyUpdateSprint {
/** The ID of the sprint to update. */
sprintId: number;
id?: number;
self?: string;
state?: string;
name?: string;
startDate?: string | Date;
endDate?: string | Date;
completeDate?: string;
createdDate?: string;
originBoardId?: number;
goal?: string;
}