7 lines
227 B
TypeScript
7 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;
|