UNPKG

@microsoft.azure/openapi-validator-core

Version:
14 lines (13 loc) 273 B
import { IRuleSet } from "./types" export interface IRuleLoader { getRuleSet: (rulesetPath?: string) => IRuleSet | Promise<IRuleSet> } export class BuiltInRuleLoader { getRuleSet(): IRuleSet { return { documentationUrl: "", rules: { } } } }