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.

9 lines (7 loc) 251 B
import type { JqlQueryField } from './jqlQueryField'; /** An element of the order-by JQL clause. */ export interface JqlQueryOrderByClauseElement { field: JqlQueryField; /** The direction in which to order the results. */ direction?: string; }