@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 (8 loc) • 304 B
text/typescript
import type { StatusCreate } from './statusCreate';
import type { StatusScope } from './statusScope';
/** Details of the statuses being created and their scope. */
export interface StatusCreateRequest {
scope: StatusScope;
/** Details of the statuses being created. */
statuses: StatusCreate[];
}