123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import { IBaseProps } from '../_util/base';
- interface IStep {
-
- imageUrl: string;
-
- imageMode: string;
-
- imageStyle: string;
-
- top: string;
-
- left: string;
-
- className?: string;
- }
- export interface IGuideTour extends IBaseProps {
-
- maskStyle: string;
-
- maskClassName?: string;
-
- items: IStep[];
-
- current: number;
-
- defaultCurrent: number;
-
- swiperable: boolean;
-
- visible: boolean;
-
- onCancel: () => void;
-
- onChange: (index: number) => boolean;
- }
- export declare const GuideTourDefaultProps: Partial<IGuideTour>;
- export declare const GuideTourFunctionalProps: Partial<IGuideTour>;
- export {};
|