UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

8 lines (7 loc) 319 B
import { Message, InaccessibleMessage } from './'; /** * ## MaybeInaccessibleMessage * This object describes a message that can be inaccessible to the bot. It can be one of * @see https://core.telegram.org/bots/api#maybeinaccessiblemessage * */ export type MaybeInaccessibleMessage = Message | InaccessibleMessage;