dumi-theme-mobile
Version:
dumi-theme-mobile
9 lines (8 loc) • 357 B
TypeScript
import PreviewerActions from 'dumi/theme-default/slots/PreviewerActions';
import { type ComponentProps, type FC } from 'react';
import './index.less';
type IPreviewerActionsProps = ComponentProps<typeof PreviewerActions> & {
qrCodeUrl?: string;
};
declare const MobilePreviewerActions: FC<IPreviewerActionsProps>;
export default MobilePreviewerActions;