@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.
14 lines (13 loc) • 394 B
text/typescript
/** Details about a project type. */
export interface ProjectType {
/** The key of the project type. */
key?: string;
/** The formatted key of the project type. */
formattedKey?: string;
/** The key of the project type's description. */
descriptionI18nKey?: string;
/** The icon of the project type. */
icon?: string;
/** The color of the project type. */
color?: string;
}