index.d.ts 243 B

123456
  1. import type AjvCore from "../core";
  2. import type { AnyValidateFunction } from "../types";
  3. declare function standaloneCode(ajv: AjvCore, refsOrFunc?: {
  4. [K in string]?: string;
  5. } | AnyValidateFunction): string;
  6. export default standaloneCode;