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.

10 lines (9 loc) 296 B
/** Details of names changed in the record event. */ export interface ChangedValue { /** The name of the field changed. */ fieldName?: string; /** The value of the field before the change. */ changedFrom?: string; /** The value of the field after the change. */ changedTo?: string; }