summaryrefslogtreecommitdiff
path: root/cli/bench/testdata/npm/hono/dist/compose.d.ts
blob: 495b9bda584c3eabf0667c2d1d067e3a7d054e6e (plain)
1
2
import type { ErrorHandler, NotFoundHandler } from './hono';
export declare const compose: <C>(middleware: Function[], onError?: ErrorHandler, onNotFound?: NotFoundHandler) => (context: C, next?: Function) => Promise<C>;