Urara-Blog/node_modules/.pnpm-store/v3/files/6c/d152926b3dbbf602203c3252d5104d529f7239376297271fdbd1d51ba6b7f383f2dcceba8f153177a965b2ea79687d5fdf9d9d2722621a934fe0731b84ea62
2022-08-14 01:14:53 +08:00

6 lines
456 B
Text

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;