MCPcopy Index your code
hub / github.com/CopilotKit/OpenTag / TelegramMessage

Interface TelegramMessage

e2e/telegram-api.ts:102–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

100// ── Types ─────────────────────────────────────────────────────────────────────
101
102export interface TelegramMessage {
103 message_id: number;
104 from?: {
105 id: number;
106 is_bot: boolean;
107 username?: string;
108 first_name?: string;
109 };
110 chat: { id: number; type: string };
111 date: number;
112 text?: string;
113 reply_to_message?: TelegramMessage;
114}
115
116export interface TelegramUpdate {
117 update_id: number;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected