docusaurus-theme-openapi-docs
Version:
OpenAPI theme for Docusaurus.
19 lines (18 loc) • 577 B
TypeScript
import React from "react";
export declare function json2xml(o: Record<string, any>, tab: string): string;
interface ResponseExamplesProps {
responseExamples: any;
mimeType: string;
}
export declare const ResponseExamples: React.FC<ResponseExamplesProps>;
interface ResponseExampleProps {
responseExample: any;
mimeType: string;
}
export declare const ResponseExample: React.FC<ResponseExampleProps>;
interface ExampleFromSchemaProps {
schema: any;
mimeType: string;
}
export declare const ExampleFromSchema: React.FC<ExampleFromSchemaProps>;
export {};