import {StoredAttachment} from "./stored-attachment"; export type StoredMessage = { chatId: number; id: number; replyToMessageId?: number; fromId: number; text?: string | null; quoteText?: string | null; date: number; photoMaxSizeFilePath?: string[] | null; attachments?: StoredAttachment[] | null; };