UNPKG

@sentzunhat/zacatl

Version:

A modular, high-performance TypeScript microservice framework for Node.js, featuring layered architecture, dependency injection, and robust validation for building scalable APIs and distributed systems.

10 lines 547 B
import type { FastifySchema } from '../../../../../../../third-party/fastify.js'; import { AbstractRouteHandler } from './abstract'; export interface PatchRouteHandlerConstructor { url: string; schema: FastifySchema; } export declare abstract class PatchRouteHandler<TBody = void, TQuerystring = void, TResponse = void, TParams = void, THeaders = void> extends AbstractRouteHandler<TBody, TQuerystring, TResponse, TParams, THeaders> { constructor(args: PatchRouteHandlerConstructor); } //# sourceMappingURL=patch-route-handler.d.ts.map