-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.d.ts
More file actions
32 lines (28 loc) · 882 Bytes
/
index.d.ts
File metadata and controls
32 lines (28 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { ReactNode } from 'react';
declare module '@deuex-solutions/react-tour' {
export interface ReactProps {
disableDotsNavigation: boolean;
disableKeyboardNavigation: boolean;
showCloseButton: boolean;
showNumber: boolean;
accentColor: string;
inViewThreshold: number;
lastStepNextButton: ReactNode;
maskColor: string;
playTour: boolean;
stepWaitTimer: number;
steps: Array<TourSteps>;
onRequestClose: () => void;
onRequestSkip: () => void;
}
export interface TourSteps {
content?: string | React.ReactNode;
actionType?: string;
position?: string | number[];
selector?: string;
userTypeText?: string;
waitTimer?: number;
}
const ReactTutorial: React.FC<ReactProps>;
export default ReactTutorial;
}