UNPKG

@redocly/openapi-core

Version:

See https://github.com/Redocly/openapi-cli

11 lines (9 loc) 277 B
import { Oas3Rule, Oas2Rule } from '../../visitors'; import { validateDefinedAndNonEmpty } from '../utils'; export const InfoDescription: Oas3Rule | Oas2Rule = () => { return { Info(info, ctx) { validateDefinedAndNonEmpty('description', info, ctx); }, }; };