UNPKG

docusaurus-plugin-openapi-docs

Version:

OpenAPI plugin for Docusaurus.

14 lines (13 loc) 338 B
import { MediaTypeObject } from "../openapi/types"; interface Props { title: string; body: { content?: { [key: string]: MediaTypeObject; }; description?: string; required?: boolean; }; } export declare function createRequestBodyDetails({ title, body }: Props): string[]; export {};