UNPKG

@redocly/theme

Version:

Shared UI components lib

9 lines (8 loc) 356 B
import React from 'react'; import type { CodeWalkthroughFile } from '@redocly/config'; export type CodePanelProps = { files: CodeWalkthroughFile[]; downloadAssociatedFiles: CodeWalkthroughFile[]; preview: React.ReactNode[]; }; export declare function CodePanel({ files, downloadAssociatedFiles, preview, }: CodePanelProps): JSX.Element | null;