UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

12 lines (9 loc) 283 B
import { validateDefinedAndNonEmpty } from '../utils'; import type { Oas3Rule, Oas2Rule } from '../../visitors'; export const InfoLicenseUrl: Oas3Rule | Oas2Rule = () => { return { License(license, ctx) { validateDefinedAndNonEmpty('url', license, ctx); }, }; };