@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
9 lines (8 loc) • 367 B
TypeScript
export interface IMessageAttachmentTitle {
/** Title to display for this attachment, displays under the author. */
value?: string;
/** Providing this makes the title clickable, pointing to this link. */
link?: string;
/** When this is provided, a download icon appears and clicking this prompts a download. */
displayDownloadLink?: boolean;
}