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.

12 lines (11 loc) 378 B
/** Details of functions that can be used in advanced searches. */ export interface FunctionReferenceData { /** The function identifier. */ value?: string; /** The display name of the function. */ displayName?: string; /** Whether the function can take a list of arguments. */ isList?: string; /** The data types returned by the function. */ types?: string[]; }