Files
pyrofetes-frontend/node_modules/ajv/dist/compile/validate/applicability.d.ts
CHEVALLIER Abel cb235644dc init
2025-11-13 16:23:22 +01:00

7 lines
456 B
TypeScript

import type { AnySchemaObject } from "../../types";
import type { SchemaObjCxt } from "..";
import type { JSONType, RuleGroup, Rule } from "../rules";
export declare function schemaHasRulesForType({ schema, self }: SchemaObjCxt, type: JSONType): boolean | undefined;
export declare function shouldUseGroup(schema: AnySchemaObject, group: RuleGroup): boolean;
export declare function shouldUseRule(schema: AnySchemaObject, rule: Rule): boolean | undefined;