@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.
19 lines (18 loc) • 519 B
text/typescript
export interface StoreAvatar {
/** The avatar type. */
type: 'project' | 'issuetype' | string;
/** The ID of the item the avatar is associated with. */
entityId: number | string;
/** The X coordinate of the top-left corner of the crop region. */
x?: number;
/** The Y coordinate of the top-left corner of the crop region. */
y?: number;
/**
* The length of each side of the crop region.
*
* @default 0
*/
size?: number;
mimeType: string;
avatar: Buffer | ArrayBuffer | Uint8Array;
}