UNPKG

openapi-ts-json-schema

Version:

OpenAPI to JSON schema generator with TypeScript in mind

10 lines (9 loc) 269 B
import type { Plugin } from '../types'; type PluginOptions = { schemaFilter?: (input: { id: string; isRef: boolean; }) => boolean; }; declare const fastifyIntegrationPlugin: Plugin<PluginOptions | void>; export default fastifyIntegrationPlugin;