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