UNPKG

typescript-telegram-bot-api

Version:

Telegram Bot API wrapper for Node.js written in TypeScript

17 lines (16 loc) 309 B
import { Chat } from './Chat'; /** * ## Story * This object represents a story. * @see https://core.telegram.org/bots/api#story */ export type Story = { /** * Chat that posted the story */ chat: Chat; /** * Unique identifier for the story in the chat */ id: number; };