Module

x/grammy_types/mod.ts>Opts

Type declarations of the Telegram Bot API.
Very Popular
Go to Latest
type alias Opts
import { type Opts } from "https://dotland.deno.dev/x/grammy_types@v3.6.2/mod.ts";

Utility type providing the argument type for the given method name or {} if the method does not take any parameters

definition: [M in keyof ApiMethods<F>]: Params<F, M>[0] extends undefined ? { } : NonNullable<Params<F, M>[0]>