8 lines
250 B
TypeScript
8 lines
250 B
TypeScript
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
||
|
|
||
|
import type { FastifyRouteSchemaDef } from 'fastify/types/schema';
|
||
|
|
||
|
export function validatorCompiler({ schema }: FastifyRouteSchemaDef<any>) {
|
||
|
return (data: any) => schema.validate(data);
|
||
|
}
|