Urara-Blog/node_modules/.pnpm-store/v3/files/04/df1787e48a78ebcf39407de627ab16c0a208e52db35a09892b67dca162607f03fe5e003d7492713e02a6ce30f76516d8bf7ea572073699998d67fb4742abfc
2022-08-14 01:14:53 +08:00

8 lines
443 B
Text

import type { CodeKeywordDefinition } from "../../types";
import type { KeywordCxt } from "../../compile/validate";
import { Code } from "../../compile/codegen";
import { SchemaEnv } from "../../compile";
declare const def: CodeKeywordDefinition;
export declare function getValidate(cxt: KeywordCxt, sch: SchemaEnv): Code;
export declare function callRef(cxt: KeywordCxt, v: Code, sch?: SchemaEnv, $async?: boolean): void;
export default def;