UNPKG

openapi-modifier

Version:

This package allows you to automate the process of modifying OpenAPI specifications by applying a set of predefined rules

13 lines (12 loc) 428 B
import { RuleProcessorT } from '../../core/rules/processor-models'; import { z } from 'zod'; declare const configSchema: z.ZodObject<{ showUnusedWarning: z.ZodOptional<z.ZodBoolean>; }, "strict", z.ZodTypeAny, { showUnusedWarning?: boolean | undefined; }, { showUnusedWarning?: boolean | undefined; }>; declare const processor: RuleProcessorT<typeof configSchema>; export default processor; export { configSchema };