chore: update ant-design dependencies and add new icon types
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user