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) 245 B
import type { JqlQueryClause } from './jqlQueryClause'; import type { JqlQueryOrderByClause } from './jqlQueryOrderByClause'; /** A parsed JQL query. */ export interface JqlQuery { orderBy?: JqlQueryOrderByClause; where?: JqlQueryClause; }