Skip to main content
Module

x/grammy_emoji/deps.deno.ts>RawApi

Helpers for sending emojis.
Latest
type alias RawApi
import { type RawApi } from "https://deno.land/x/grammy_emoji@v0.8.13/deps.deno.ts";

Represents the raw Telegram Bot API with all methods specified 1:1 as documented on the website (https://core.telegram.org/bots/api).

Every method takes an optional AbortSignal object that allows to cancel the API call if desired.

definition: [M in keyof Telegram]: Parameters<Telegram[M]>[0] extends undefined ? (signal?: AbortSignal) => Promise<ReturnType<Telegram[M]>> : (args: Opts<M>, signal?: AbortSignal) => Promise<ReturnType<Telegram[M]>>