import { type CallbackQueryMiddleware } from "https://dotland.deno.dev/x/grammy@v1.12.4/mod.ts";
Type of the middleware that can be passed to bot.callbackQuery
.
This helper type can be used to annotate middleware functions that are
defined in one place, so that they have the correct type when passed to
bot.callbackQuery
in a different place. For instance, this allows for more
modular code where handlers are defined in separate files.
Type Parameters
C extends Context
definition: Middleware<CallbackQueryContext<C>>