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) 275 B
/** The payload for defining quick filters */ export interface QuickFilterPayload { /** The description of the quick filter */ description?: string; /** The jql query for the quick filter */ jqlQuery?: string; /** The name of the quick filter */ name?: string; }