@redocly/asyncapi-docs
Version:
Async API docs for Redocly Realm
9 lines (8 loc) • 375 B
TypeScript
import React from 'react';
import type { AsyncApiDefinition, ApiItemsGroup, ApiItem } from '../types';
type AsyncApiDocsProps = {
definition: AsyncApiDefinition;
apiItems: (ApiItemsGroup | ApiItem)[];
};
export declare const AsyncApiDocs: React.MemoExoticComponent<({ definition, apiItems }: AsyncApiDocsProps) => import("react/jsx-runtime").JSX.Element>;
export {};