@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.
11 lines (10 loc) • 361 B
text/typescript
/**
* Lists of issues and entity properties. See [Entity
* properties](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/) for more information.
*/
export interface IssueEntityProperties {
/** A list of entity property IDs. */
entitiesIds?: number[];
/** A list of entity property keys and values. */
properties?: unknown;
}