UNPKG

@asyncapi/react-component

Version:

A React component for AsyncAPI specification.

15 lines 457 B
import React from 'react'; import { SchemaInterface } from '@asyncapi/parser'; export interface Props { schemaName?: React.ReactNode; schema?: SchemaInterface; required?: boolean; isPatternProperty?: boolean; isProperty?: boolean; isCircular?: boolean; dependentRequired?: string[]; expanded?: boolean; isArray?: boolean; } export declare const Schema: React.FunctionComponent<Props>; //# sourceMappingURL=Schema.d.ts.map