@redocly/asyncapi-docs
Version:
Async API docs for Redocly Realm
12 lines (11 loc) • 414 B
TypeScript
import type { AsyncApiServer } from '../types/index.js';
type ServersListPanelProps = {
servers: {
key?: string;
value: AsyncApiServer;
}[];
showDetails?: boolean;
hideHeader?: boolean;
};
export declare const ServersListPanel: import("react").MemoExoticComponent<({ servers, showDetails, hideHeader }: ServersListPanelProps) => import("react/jsx-runtime").JSX.Element>;
export {};