persona-community-5/.pnpm-store/v3/files/ed/56794dc3d8fd100ca1fc876dee7f2ffae39a4f89a2320614e86695c10c04094c36f8db120f3eeb664a1e62a951658fc031b2a69d790defa214ab718cdd3cc3
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

15 lines
470 B
Plaintext

import { Assertions } from '../common/assertions';
import { InfoContact } from '../common/info-contact';
import { Struct } from '../common/struct';
import type { Overlay1RuleSet } from '../../oas-types';
import type { Overlay1Rule } from '../../visitors';
export const rules: Overlay1RuleSet<'built-in'> = {
'info-contact': InfoContact as Overlay1Rule,
struct: Struct as Overlay1Rule,
assertions: Assertions as Overlay1Rule,
};
export const preprocessors = {};