UNPKG

schema-finder

Version:

A simple React component for viewing and exploring a JSONSchema

11 lines 397 B
import React from "react"; import { JSONSchema7, DerefOptions } from "./internal"; export interface FinderProps extends DerefOptions { /** Dict of schemas to be displayed; Key used for display name */ readonly schemas: Record<string, JSONSchema7>; } /** * OSX's Finder-esque JSONSchema explorer */ export declare const Finder: React.VFC<FinderProps>; //# sourceMappingURL=Finder.d.ts.map