@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.
8 lines (7 loc) • 315 B
text/typescript
/** List issues archived within a specified date range. */
export interface DateRangeFilter {
/** List issues archived after a specified date, passed in the YYYY-MM-DD format. */
dateAfter: string;
/** List issues archived before a specified date provided in the YYYY-MM-DD format. */
dateBefore: string;
}