@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) • 414 B
text/typescript
/** Metadata for an item in an attachment archive. */
export interface AttachmentArchiveItemReadable {
/** The path of the archive item. */
path?: string;
/** The position of the item within the archive. */
index?: number;
/** The size of the archive item. */
size?: string;
/** The MIME type of the archive item. */
mediaType?: string;
/** The label for the archive item. */
label?: string;
}