@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.
13 lines (12 loc) • 504 B
text/typescript
export interface GetProjectComponents {
/** The project ID or project key (case sensitive). */
projectIdOrKey: string | number;
/**
* The source of the components to return. Can be `jira` (default), `compass` or `auto`. When `auto` is specified, the
* API will return connected Compass components if the project is opted into Compass, otherwise it will return Jira
* components. Defaults to `jira`.
*
* @default jira
*/
componentSource?: 'jira' | 'compass' | 'auto' | string;
}