botbook/node_modules/json-schema-library/dist/lib/eachSchema.d.ts

4 lines
251 B
TypeScript
Raw Normal View History

2024-09-04 13:13:15 -03:00
import { JsonSchema, JsonPointer } from "./types";
export type EachSchemaCallback = (schema: JsonSchema, pointer: JsonPointer) => void;
export declare function eachSchema(schema: JsonSchema, callback: EachSchemaCallback, pointer?: JsonPointer): void;