@asyncapi/react-component
Version:
A React component for AsyncAPI specification.
16 lines • 692 B
TypeScript
import React from 'react';
import { ChannelInterface, OperationInterface } from '@asyncapi/parser';
import { PayloadType } from '../../types';
interface Props {
type: PayloadType;
operation: OperationInterface;
channelName: string;
channel: ChannelInterface;
}
export declare const Operation: React.FunctionComponent<Props>;
export declare const OperationInfo: React.FunctionComponent<Props>;
export declare const OperationReplyInfo: React.FunctionComponent<Props>;
export declare const OperationReplyChannelInfo: React.FunctionComponent<Props>;
export declare const OperationReplyAddressInfo: React.FunctionComponent<Props>;
export {};
//# sourceMappingURL=Operation.d.ts.map