redoc
Version:
9 lines (8 loc) • 355 B
TypeScript
import * as React from 'react';
import { ExampleModel } from '../../services/models';
export interface ExampleProps {
example: ExampleModel;
mimeType: string;
}
export declare function Example({ example, mimeType }: ExampleProps): React.JSX.Element;
export declare function ExternalExample({ example, mimeType }: ExampleProps): React.JSX.Element;