UNPKG

json-schema-library

Version:

Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation

7 lines (6 loc) 214 B
import { JsonSchema } from "../types"; /** * Create a simple json schema for the given input data * @param data - data to get json schema for */ export declare function createSchema(data: unknown): JsonSchema;