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.

8 lines (6 loc) 288 B
import type { JqlQueryOrderByClauseElement } from './jqlQueryOrderByClauseElement'; /** Details of the order-by JQL clause. */ export interface JqlQueryOrderByClause { /** The list of order-by clause fields and their ordering directives. */ fields: JqlQueryOrderByClauseElement[]; }