@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) • 349 B
text/typescript
export interface SetIssueProperty {
/** The ID or key of the issue. */
issueIdOrKey: string;
/** The key of the issue property. The maximum length is 255 characters. */
propertyKey: string;
/** The value of the issue property. Can be of any type. */
// eslint-disable-next-line @typescript-eslint/no-explicit-any
propertyValue: any;
}