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.

18 lines (17 loc) 501 B
/** A change item. */ export interface ChangeDetails { /** The name of the field changed. */ field?: string; /** The ID of the field changed. */ fieldId?: string; /** The type of the field changed. */ fieldtype?: string; /** The details of the original value. */ from?: string; /** The details of the original value as a string. */ fromString?: string; /** The details of the new value. */ to?: string; /** The details of the new value as a string. */ toString?: string; }