type alias RawApiimport { type RawApi } from "https://dotland.deno.dev/x/grammy@v1.12.0/mod.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]>>