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.

12 lines (11 loc) 421 B
/** * An entity property, for more information see [Entity * properties](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/). */ export interface EntityProperty { /** The key of the property. Required on create and update. */ key?: string; /** The value of the property. Required on create and update. */ // eslint-disable-next-line @typescript-eslint/no-explicit-any value?: any; }