persona-community-5/.pnpm-store/v3/files/41/49e503ae2e53e75c95ba19d10b00cc185ff30db9b5849e7215476f45142004925f24988b24e73468c02d6a5d6c209446b2934078b709c291b5586a65c09ec8
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

11 lines
602 B
Plaintext

import type { Arazzo1RuleSet, Async2RuleSet, Async3RuleSet, Oas2RuleSet, Oas3RuleSet, Overlay1RuleSet, SpecVersion } from '../oas-types';
import type { StyleguideConfig } from './config';
import type { ProblemSeverity } from '../walk';
type InitializedRule = {
severity: ProblemSeverity;
ruleId: string;
visitor: any;
};
export declare function initRules(rules: (Oas3RuleSet | Oas2RuleSet | Async2RuleSet | Async3RuleSet | Arazzo1RuleSet | Overlay1RuleSet)[], config: StyleguideConfig, type: 'rules' | 'preprocessors' | 'decorators', oasVersion: SpecVersion): InitializedRule[];
export {};