UNPKG

@redocly/portal-plugin-async-api

Version:

Async API plugin for Redocly products

11 lines (10 loc) 420 B
import type { PageProps } from '@redocly/realm/dist/shared/types'; import type { AsyncApiDocsSettings } from './config'; import '@asyncapi/react-component/styles/default.css'; interface AsyncApiDocsProps { pageProps: PageProps & { settings?: AsyncApiDocsSettings; }; } declare function AsyncApiDocs({ pageProps }: AsyncApiDocsProps): import("react/jsx-runtime").JSX.Element; export default AsyncApiDocs;