botbook/node_modules/json-schema-library/dist/lib/createSchemaOf.d.ts
Rodrigo Rodriguez 6ae15fe3e5 Updated.
2024-09-04 13:13:15 -03:00

6 lines
227 B
TypeScript

import { JsonSchema } from "./types";
/**
* Create a simple json schema for the given input data
* @param data - data to get json schema for
*/
export default function createSchemaOf(data: unknown): JsonSchema | undefined;