mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-08 04:09:12 +08:00
6 lines
243 B
Text
6 lines
243 B
Text
import type AjvCore from "../core";
|
|
import type { AnyValidateFunction } from "../types";
|
|
declare function standaloneCode(ajv: AjvCore, refsOrFunc?: {
|
|
[K in string]?: string;
|
|
} | AnyValidateFunction): string;
|
|
export default standaloneCode;
|