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

7 lines
227 B
TypeScript
Raw Normal View History

2024-09-04 13:13:15 -03:00
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;