persona-community-5/.pnpm-store/v3/files/f3/ecb65200e4bdfedd712ba90ff61782854e2880ee36442b05dcdf580d8ecd1c08a74900c59df9b9d8b3f35acf1e2419d9dc81cd5813d2639dc9b2064b28ef51
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

12 lines
283 B
Plaintext

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