-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.d.ts
100 lines (81 loc) · 1.48 KB
/
index.d.ts
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import * as React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
import { ComponentClass, Component } from 'react';
interface IIntroComponentProps {
/**
* 分组
*/
group?: string;
/**
* 第几步
*/
step: number;
/**
* 展示内容
*/
content?: JSX.Element;
/**
* 样式
*/
style?: StyleProp<ViewStyle>;
}
export declare class Intro extends Component<IIntroComponentProps> {}
export interface IntroManageOptions {
/**
* 当前分组
*/
group?: string;
/**
* 循环
*/
loop?: boolean;
/**
* 初始step 索引
*/
startIndex?: number;
/**
* 是否显示步骤数, 默认true
*/
showStepNumber?: boolean;
/**
* 蒙层的样式,可以定义透明度,背景颜色等
*/
maskStyle?: StyleProp<ViewStyle>;
/**
* 高亮的内容区域是否可交互,用于防止用户点击在高亮内容上面
*/
touchable?: boolean;
/**
* 点击蒙层是否关闭
*/
maskClosable?: boolean;
/**
* 自定义渲染提示内容
*/
contentRender?: (content: JSX.Element, step: number) => JSX.Element;
}
export declare class IntroManage {
constructor(opts: IntroManageOptions);
/**
* 开始
*/
start(): void;
/**
* 结束
*/
stop(): void;
/**
* next step
*/
next(): void;
/**
* previous step
*/
prev(): void;
/**
* go to step direct (index)
* @param index
*/
private toStep(index: number): void;
}
export default Intro;