@s1am0nd/asyncapi-react-component
Version:
A React component for AsyncAPI specification.
13 lines • 456 B
TypeScript
import React from 'react';
import { Channel, Operation as OperationType } from '@asyncapi/parser';
import { PayloadType } from '../../types';
interface Props {
type: PayloadType;
operation: OperationType;
channelName: string;
channel: Channel;
}
export declare const Operation: React.FunctionComponent<Props>;
export declare const OperationInfo: React.FunctionComponent<Props>;
export {};
//# sourceMappingURL=Operation.d.ts.map