UNPKG

@redocly/theme

Version:

Shared UI components lib

9 lines (8 loc) 374 B
import type { CodeWalkthroughFile } from '@redocly/config'; export type CodePanelHeaderProps = { files: CodeWalkthroughFile[]; handleTabSwitch: (name: string) => void; activeTabName: string; onDownloadCode: () => void; }; export declare function CodePanelHeader({ files, handleTabSwitch, activeTabName, onDownloadCode, }: CodePanelHeaderProps): JSX.Element;