14 lines
339 B
TypeScript
14 lines
339 B
TypeScript
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;
|
|
};
|