@s1am0nd/asyncapi-react-component
Version:
A React component for AsyncAPI specification.
12 lines • 417 B
TypeScript
import React from 'react';
import { AsyncAPIDocument } from '@asyncapi/parser';
import { ConfigInterface } from '../../config';
import { ErrorObject } from '../../types';
interface Props {
asyncapi: AsyncAPIDocument;
config: ConfigInterface;
error?: ErrorObject;
}
declare const AsyncApiLayout: React.FunctionComponent<Props>;
export default AsyncApiLayout;
//# sourceMappingURL=Layout.d.ts.map