UNPKG

@redocly/asyncapi-docs

Version:

Async API docs for Redocly Realm

11 lines (10 loc) 414 B
import React from 'react'; import type { AsyncApiDefinition, ApiItem } from '../types'; type OperationSectionProps = { operations: ApiItem[]; definition: AsyncApiDefinition; type: 'send' | 'receive'; id: string; }; export declare const OperationSection: React.MemoExoticComponent<({ operations, definition, type, id }: OperationSectionProps) => import("react/jsx-runtime").JSX.Element>; export {};