Files
tg-chat-bot/src/common/message-part.ts
T

6 lines
109 B
TypeScript

export type MessagePart = {
bot: boolean;
name?: string;
content: string;
images: string[];
}