You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
456 B
6 lines
456 B
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;
|