Rocket.Chat.ReactNative/app/definitions/IAttachment.ts

11 lines
194 B
TypeScript
Raw Normal View History

export interface IAttachment {
title: string;
type: string;
description: string;
title_link?: string;
image_url?: string;
image_type?: string;
video_url?: string;
video_type?: string;
}