@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.
22 lines (20 loc) • 389 B
text/typescript
import type { AvatarUrls } from './avatarUrls';
export interface Projects {
self: string;
id: string;
key: string;
name: string;
avatarUrls: AvatarUrls;
projectCategory: {
self: string;
id: string;
name: string;
description: string;
};
simplified: boolean;
style: string;
insight: {
totalIssueCount: number;
lastIssueUpdateTime: string;
};
}