@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 (8 loc) • 365 B
text/typescript
import type { JqlFunctionPrecomputation } from './jqlFunctionPrecomputation';
/** Get precomputations by ID response. */
export interface JqlFunctionPrecomputationGetByIdResponse {
/** List of precomputations that were not found. */
notFoundPrecomputationIDs?: string[];
/** The list of precomputations. */
precomputations?: JqlFunctionPrecomputation[];
}