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.

8 lines (7 loc) 277 B
/** Details for changing owners of shareable entities */ export interface BulkChangeOwnerDetails { /** Whether the name is fixed automatically if it's duplicated after changing owner. */ autofixName: boolean; /** The account id of the new owner. */ newOwner: string; }