UNPKG

@redocly/portal-plugin-async-api

Version:

Async API plugin for Redocly products

11 lines (10 loc) 403 B
import type { PageProps } from '@redocly/config'; 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;