UNPKG

@asyncapi/react-component

Version:

A React component for AsyncAPI specification.

12 lines 452 B
import React from 'react'; import { AsyncAPIDocumentInterface } from '@asyncapi/parser'; import { ConfigInterface } from '../../config'; import { PluginManager } from '../../helpers/pluginManager'; interface Props { asyncapi: AsyncAPIDocumentInterface; config: ConfigInterface; pluginManager?: PluginManager; } declare const AsyncApiLayout: React.FunctionComponent<Props>; export default AsyncApiLayout; //# sourceMappingURL=Layout.d.ts.map