@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.
12 lines (10 loc) • 312 B
text/typescript
import type { ProjectDetails } from './projectDetails';
/**
* The projects the item is associated with. Indicated for items associated with [next-gen
* projects](https://confluence.atlassian.com/x/loMyO).
*/
export interface Scope {
/** The type of scope. */
type?: string;
project?: ProjectDetails;
}