UNPKG

json-schema-library

Version:

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

7 lines (6 loc) 227 B
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;