minishouyin/node_modules/antd/lib/tour/panelRender.d.ts

14 lines
469 B
TypeScript
Raw Permalink Normal View History

2025-11-12 11:35:57 +08:00
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'];
actionsRender?: TourStepProps['actionsRender'];
}
declare const TourPanel: React.FC<TourPanelProps>;
export default TourPanel;