@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.
6 lines (5 loc) • 309 B
text/typescript
/** The payload for creating a scope. Defines if a project is team-managed project or company-managed project */
export interface ScopePayload {
/** The type of the scope. Use `GLOBAL` or empty for company-managed project, and `PROJECT` for team-managed project */
type?: 'GLOBAL' | 'PROJECT' | string;
}