@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
text/typescript
/**
* 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;
}