@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 (9 loc) • 444 B
text/typescript
import type { ProjectCreateResourceIdentifier } from './projectCreateResourceIdentifier';
/** Defines the payload to configure the issue layout item for a project. */
export interface IssueLayoutItemPayload {
itemKey?: ProjectCreateResourceIdentifier;
/** The item section type */
sectionType?: 'content' | 'primaryContext' | 'secondaryContext' | string;
/** The item type. Currently only support FIELD */
type?: 'FIELD' | string;
}