UNPKG

@squiz/json-schema-library

Version:

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

8 lines (7 loc) 229 B
import { JSONSchema } from "./types"; /** * Create a simple json schema for the given input data * @param data - data to get json schema for * @return schema */ export default function createSchemaOf(data: any): JSONSchema;