@redocly/asyncapi-docs
Version:
Async API docs for Redocly Realm
12 lines (11 loc) • 466 B
TypeScript
import type { AsyncApiOperation } from '../types/index.js';
import type { ReactNode } from 'react';
type OperationProps = {
operation?: AsyncApiOperation;
dataSectionId: string;
headerRow?: ReactNode;
id?: string;
showDivider?: boolean;
};
export declare const Operation: import("react").MemoExoticComponent<({ operation, dataSectionId, headerRow, id, showDivider }: OperationProps) => import("react/jsx-runtime").JSX.Element | null>;
export {};