@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.
11 lines (10 loc) • 472 B
text/typescript
export interface GetAvatarImageByID {
/** The icon type of the avatar. */
type: 'issuetype' | 'project' | string;
/** The ID of the avatar. */
id: number | string;
/** The size of the avatar image. If not provided the default size is returned. */
size?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | string;
/** The format to return the avatar image in. If not provided the original content format is returned. */
format?: 'png' | 'svg' | string;
}