Skip to main content
Module

x/grammy_router/deps.deno.ts>NextFunction

Router middleware for grammY
Latest
type alias NextFunction
import { type NextFunction } from "https://deno.land/x/grammy_router@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>