4 lines
272 B
TypeScript
4 lines
272 B
TypeScript
import { Request, Response, NextFunction } from 'express';
|
|
import { ZodSchema } from 'zod';
|
|
export declare function validate(schema: ZodSchema): (req: Request, res: Response, next: NextFunction) => Response<any, Record<string, any>>;
|
|
//# sourceMappingURL=validate.d.ts.map
|