UNPKG

@likeminds.community/chat-js-beta

Version:

LikeMinds Javascript SDK for chat APIs

37 lines (36 loc) 786 B
export interface AttachmentMeta { numberOfPage?: number; size?: number; duration?: number; answerId?: number; createdAt?: number; fileUrl?: string; height?: number; id?: number; index?: number; meta?: { size: number; }; name?: string; thumbnailUrl?: string | null; type?: string; width?: number; } export interface Attachment { id?: string; name?: string; url?: string; type?: string; index?: number; width?: number; height?: number; awsFolderPath?: string; localFilePath?: string; thumbnailUrl?: string; thumbnailAWSFolderPath?: string; thumbnailLocalFilePath?: string; meta?: AttachmentMeta; createdAt?: number; updatedAt?: number; fileUrl?: string; }