UNPKG

antd-hz

Version:

华卓科技基于 antd 5.0 定制的组件库

13 lines (12 loc) 417 B
import React from 'react'; import type { TourStepProps } from './interface'; interface TourPanelProps { stepProps: Omit<TourStepProps, 'closable'> & { closable?: Exclude<TourStepProps['closable'], boolean>; }; current: number; type: TourStepProps['type']; indicatorsRender?: TourStepProps['indicatorsRender']; } declare const TourPanel: React.FC<TourPanelProps>; export default TourPanel;