verdnatura-chat/app/definitions/IAttachment.ts

26 lines
548 B
TypeScript
Raw Normal View History

2021-12-24 13:12:38 +00:00
export interface IAttachment {
2022-01-24 20:12:36 +00:00
ts: Date;
2021-12-24 13:12:38 +00:00
title: string;
type: string;
description: string;
title_link?: string;
image_url?: string;
image_type?: string;
video_url?: string;
video_type?: string;
2022-01-24 20:12:36 +00:00
title_link_download?: boolean;
fields?: IAttachment[];
image_dimensions?: { width?: number; height?: number };
image_preview?: string;
image_size?: number;
author_name?: string;
author_icon?: string;
message_link?: string;
text?: string;
short?: boolean;
value?: string;
author_link?: string;
color?: string;
thumb_url?: string;
2021-12-24 13:12:38 +00:00
}