UNPKG

hapi-zod

Version:
12 lines (11 loc) 495 B
import { Plugin } from "@hapi/hapi"; import "./types"; import { HapiZodOptions } from "./types"; import { swaggerPlugin } from "./swaggerplugin"; declare const ZodValidatorPlugin: (options?: HapiZodOptions) => Plugin<null>; export default ZodValidatorPlugin; export { HapiZodOptions }; export type ZodValidatorPlugin = typeof ZodValidatorPlugin; export { swaggerPlugin } from "./swaggerplugin"; export { ZodDocsOptions } from "./swaggerplugin"; export type SwaggerPlugin = typeof swaggerPlugin;