UNPKG

stoker

Version:

Utilities for hono and @hono/zod-openapi

12 lines (11 loc) 306 B
import type { ZodSchema } from "./types.ts"; declare const jsonContentRequired: <T extends ZodSchema>(schema: T, description: string) => { required: boolean; content: { "application/json": { schema: T; }; }; description: string; }; export = jsonContentRequired;