mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
9 lines
260 B
TypeScript
9 lines
260 B
TypeScript
import { Draft2019 } from "json-schema-library";
|
|
|
|
export function getTemplate(schema: object) {
|
|
if (!schema || schema === undefined || schema === null) return undefined;
|
|
|
|
const lib = new Draft2019(schema);
|
|
return lib.getTemplate(undefined, schema);
|
|
}
|