@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) • 401 B
text/typescript
import type { ProjectIssueCreateMetadata } from './projectIssueCreateMetadata';
/** The wrapper for the issue creation metadata for a list of projects. */
export interface IssueCreateMetadata {
/** Expand options that include additional project details in the response. */
expand?: string;
/** List of projects and their issue creation metadata. */
projects?: ProjectIssueCreateMetadata[];
}