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.

19 lines (18 loc) 549 B
/** * Details about syntax and type errors. The error details apply to the entire expression, unless the object includes:* * * - `line` and `column` * - `expression` */ export interface JiraExpressionValidationError { /** The text column in which the error occurred. */ column?: number; /** The part of the expression in which the error occurred. */ expression?: string; /** The text line in which the error occurred. */ line?: number; /** Details about the error. */ message: string; /** The error type. */ type: string; }