@redocly/theme
Version:
Shared UI components lib
13 lines (12 loc) • 364 B
TypeScript
import * as React from 'react';
export interface MarkdocExampleProps {
language: string;
rawContent: string;
renderDemo?: boolean;
demoContent: React.ReactNode[];
withLabels?: boolean;
codeLabel?: string;
resultLabel?: string;
title?: string;
}
export declare function MarkdocExample(props: MarkdocExampleProps): React.JSX.Element;