dumi-theme-lobehub
Version:
dumi-theme-lobehub is a documentation site theme package designed for dumi2. It provides a more beautiful and user-friendly development and reading experience based on @lobehub/ui
14 lines (13 loc) • 477 B
TypeScript
import { type IPreviewerProps } from 'dumi';
import { type FC, type ReactNode } from 'react';
export interface PreviewerActionsProps extends IPreviewerProps {
demoContainer: HTMLDivElement | HTMLIFrameElement;
/**
* disabled actions
*/
disabledActions?: ('CSB' | 'STACKBLITZ' | 'EXTERNAL' | 'HTML2SKETCH')[];
extra?: ReactNode;
forceShowCode?: boolean;
}
declare const PreviewerActions: FC<PreviewerActionsProps>;
export default PreviewerActions;