Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/grammy_autoquote/deps.deno.ts>NextFunction

grammY plugin that forces all sent messages to quote the last received one
Go to Latest
type alias NextFunction
import { type NextFunction } from "https://deno.land/x/grammy_autoquote@v2.0.0/deps.deno.ts";

A function of this type is passed as the second parameter to all middleware. Invoke it to call the downstream middleware and pass on the control flow.

In other words, if your middleware is done handling the context object, and other middleware should take over, this function should be called and awaited.

Once the Promise returned by this function resolves, the downstream middleware is done executing, hence returning the control.

definition: () => Promise<void>