vislite 0.5.0 → 0.5.2-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +18 -18
- package/AUTHORS.txt +6 -6
- package/CHANGELOG +5 -0
- package/LICENSE +20 -20
- package/README.md +69 -69
- package/miniprogram/ui-canvas/index.js +107 -107
- package/miniprogram/ui-canvas/index.json +4 -4
- package/miniprogram/ui-canvas/index.wxml +4 -4
- package/miniprogram/ui-canvas/index.wxss +5 -5
- package/package/Buffer/index.ts +2 -2
- package/package/Canvas/index.ts +2 -2
- package/package/Cardinal/index.ts +2 -2
- package/package/Eoap/index.ts +2 -2
- package/package/Hermite/index.ts +2 -2
- package/package/Matrix4/index.ts +2 -2
- package/package/Mercator/index.ts +2 -2
- package/package/OralCanvas/index.ts +2 -2
- package/package/OralWebGL/index.ts +2 -2
- package/package/SVG/index.ts +2 -2
- package/package/Shader/index.ts +39 -39
- package/package/Texture/index.ts +2 -2
- package/package/TreeLayout/index.ts +2 -2
- package/package/WebGL/index.ts +2 -2
- package/package/animation/index.ts +2 -2
- package/package/formatColor/index.ts +2 -2
- package/package/getLoopColors/index.ts +2 -2
- package/package/getWebGLContext/index.ts +39 -39
- package/package/resizeObserver/index.ts +2 -2
- package/package/rotate/index.ts +2 -2
- package/package/ruler/index.ts +2 -2
- package/package/throttle/index.ts +2 -2
- package/package/viewHandler/index.ts +2 -2
- package/package.json +1 -1
- package/src/Canvas.ts +67 -67
- package/src/Matrix4/move.ts +12 -12
- package/src/Matrix4/rotate.ts +15 -15
- package/src/Matrix4/scale.ts +11 -11
- package/src/Matrix4/transform.ts +64 -64
- package/src/SVG.ts +24 -24
- package/src/WebGL.ts +66 -66
- package/src/animation.ts +98 -98
- package/src/common/assemble.ts +22 -22
- package/src/common/canvas/arc.ts +50 -50
- package/src/common/canvas/config.ts +158 -158
- package/src/common/canvas/gradient.ts +29 -29
- package/src/common/canvas/index.ts +168 -168
- package/src/common/canvas/painter.ts +426 -426
- package/src/common/canvas/texts.ts +18 -18
- package/src/common/mergeOption.ts +6 -6
- package/src/common/setStyle.ts +5 -5
- package/src/common/svg/config.ts +174 -174
- package/src/common/svg/tool.ts +44 -44
- package/src/common/tree/index.ts +25 -25
- package/src/common/tree/toInnerTree.ts +56 -56
- package/src/common/tree/toPlainTree.ts +131 -131
- package/src/common/webgl/buffer.ts +79 -79
- package/src/common/webgl/doDraw.ts +108 -108
- package/src/common/webgl/getColorFactory.ts +26 -26
- package/src/common/webgl/getShader.ts +48 -48
- package/src/common/webgl/getTexture.ts +11 -11
- package/src/common/webgl/getWebGLContext.ts +27 -27
- package/src/common/webgl/index.ts +223 -223
- package/src/common/webgl/shader.ts +75 -75
- package/src/common/webgl/texture.ts +96 -96
- package/src/formatColor.ts +44 -44
- package/src/getLoopColors.ts +42 -42
- package/src/interpolation/Cardinal.ts +110 -110
- package/src/interpolation/Hermite.ts +65 -65
- package/src/resizeObserver.ts +36 -36
- package/src/ruler.ts +188 -188
- package/src/shader/fsColor.c +7 -7
- package/src/shader/fsColors.c +7 -7
- package/src/shader/fsCube.c +8 -8
- package/src/shader/fsImage.c +8 -8
- package/src/shader/vsColor.c +17 -17
- package/src/shader/vsColors.c +13 -13
- package/src/shader/vsCube.c +13 -13
- package/src/shader/vsImage.c +13 -13
- package/src/throttle.ts +51 -51
- package/src/viewHandler.ts +158 -158
- package/types/Buffer.d.ts +23 -23
- package/types/Canvas.d.ts +300 -300
- package/types/CanvasOption.d.ts +7 -7
- package/types/Cardinal.d.ts +13 -13
- package/types/Gradient.d.ts +14 -14
- package/types/Hermite.d.ts +18 -18
- package/types/Object3D.d.ts +114 -114
- package/types/SVGConfig.d.ts +76 -76
- package/types/Scene3D.d.ts +6 -6
- package/types/Shader.d.ts +21 -21
- package/types/Texture.d.ts +16 -16
- package/types/Tree.d.ts +69 -69
- package/types/TreeConfig.d.ts +24 -24
- package/types/TreeOption.d.ts +48 -48
- package/types/WebGL.d.ts +38 -38
- package/types/WebGLOption.d.ts +7 -7
- package/types/animation.d.ts +6 -6
- package/types/formatColor.d.ts +2 -2
- package/types/getLoopColors.d.ts +2 -2
- package/types/getWebGLContext.d.ts +2 -2
- package/types/painterConfig.d.ts +2 -2
- package/types/resizeObserver.d.ts +2 -2
- package/types/ruler.d.ts +7 -7
- package/types/throttle.d.ts +4 -4
- package/types/throttleOption.d.ts +21 -21
- package/types/viewHandler.d.ts +13 -13
- package/uni-app/ui-canvas.vue +226 -222
- package/lib/Buffer/index.umd.js +0 -55
- package/lib/Buffer/index.umd.min.js +0 -11
- package/lib/Canvas/index.umd.js +0 -721
- package/lib/Canvas/index.umd.min.js +0 -11
- package/lib/Cardinal/index.umd.js +0 -112
- package/lib/Cardinal/index.umd.min.js +0 -11
- package/lib/Eoap/index.umd.js +0 -53
- package/lib/Eoap/index.umd.min.js +0 -11
- package/lib/Geometry/index.umd.js +0 -205
- package/lib/Geometry/index.umd.min.js +0 -11
- package/lib/Hermite/index.umd.js +0 -55
- package/lib/Hermite/index.umd.min.js +0 -11
- package/lib/Matrix4/index.umd.js +0 -146
- package/lib/Matrix4/index.umd.min.js +0 -11
- package/lib/Mercator/index.umd.js +0 -39
- package/lib/Mercator/index.umd.min.js +0 -11
- package/lib/OralCanvas/index.es.js +0 -657
- package/lib/OralCanvas/index.es.min.js +0 -11
- package/lib/OralWebGL/index.es.js +0 -611
- package/lib/OralWebGL/index.es.min.js +0 -11
- package/lib/SVG/index.umd.js +0 -475
- package/lib/SVG/index.umd.min.js +0 -11
- package/lib/Shader/index.umd.js +0 -134
- package/lib/Shader/index.umd.min.js +0 -11
- package/lib/Texture/index.umd.js +0 -72
- package/lib/Texture/index.umd.min.js +0 -11
- package/lib/TreeLayout/index.umd.js +0 -430
- package/lib/TreeLayout/index.umd.min.js +0 -11
- package/lib/WebGL/index.umd.js +0 -684
- package/lib/WebGL/index.umd.min.js +0 -11
- package/lib/animation/index.umd.js +0 -91
- package/lib/animation/index.umd.min.js +0 -11
- package/lib/formatColor/index.umd.js +0 -59
- package/lib/formatColor/index.umd.min.js +0 -11
- package/lib/getLoopColors/index.umd.js +0 -55
- package/lib/getLoopColors/index.umd.min.js +0 -11
- package/lib/getWebGLContext/index.umd.js +0 -65
- package/lib/getWebGLContext/index.umd.min.js +0 -11
- package/lib/index.umd.js +0 -2834
- package/lib/index.umd.min.js +0 -11
- package/lib/resizeObserver/index.umd.js +0 -48
- package/lib/resizeObserver/index.umd.min.js +0 -11
- package/lib/rotate/index.umd.js +0 -27
- package/lib/rotate/index.umd.min.js +0 -11
- package/lib/ruler/index.umd.js +0 -145
- package/lib/ruler/index.umd.min.js +0 -11
- package/lib/throttle/index.umd.js +0 -70
- package/lib/throttle/index.umd.min.js +0 -11
- package/lib/viewHandler/index.umd.js +0 -139
- package/lib/viewHandler/index.umd.min.js +0 -11
package/types/TreeConfig.d.ts
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
export default interface TreeConfigType {
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* 获取根结点的方法
|
|
5
|
-
* @param initTree 原始数据
|
|
6
|
-
* @returns 返回根结点
|
|
7
|
-
*/
|
|
8
|
-
root?: (initTree: any) => any
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* 获取子结点的方法
|
|
12
|
-
* @param parentTree 父结点
|
|
13
|
-
* @param initTree 原始数据
|
|
14
|
-
* @returns 返回当前父结点的所有子结点数组
|
|
15
|
-
*/
|
|
16
|
-
children?: (parentTree: any, initTree: any) => any[]
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
* 获取结点ID方法
|
|
20
|
-
* @param treedata 当前结点
|
|
21
|
-
* @returns 返回可以唯一标识当前结点的id
|
|
22
|
-
*/
|
|
23
|
-
id?: (treedata: any) => string
|
|
24
|
-
|
|
1
|
+
export default interface TreeConfigType {
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 获取根结点的方法
|
|
5
|
+
* @param initTree 原始数据
|
|
6
|
+
* @returns 返回根结点
|
|
7
|
+
*/
|
|
8
|
+
root?: (initTree: any) => any
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* 获取子结点的方法
|
|
12
|
+
* @param parentTree 父结点
|
|
13
|
+
* @param initTree 原始数据
|
|
14
|
+
* @returns 返回当前父结点的所有子结点数组
|
|
15
|
+
*/
|
|
16
|
+
children?: (parentTree: any, initTree: any) => any[]
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* 获取结点ID方法
|
|
20
|
+
* @param treedata 当前结点
|
|
21
|
+
* @returns 返回可以唯一标识当前结点的id
|
|
22
|
+
*/
|
|
23
|
+
id?: (treedata: any) => string
|
|
24
|
+
|
|
25
25
|
}
|
package/types/TreeOption.d.ts
CHANGED
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
export type treeType = "plain" | "rect" | "circle"
|
|
2
|
-
export type treeDirectionType = "LR" | "RL" | "TB" | "BT"
|
|
3
|
-
|
|
4
|
-
export default interface TreeOptionType {
|
|
5
|
-
|
|
6
|
-
offsetX?: number
|
|
7
|
-
offsetY?: number
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* 树图类型
|
|
11
|
-
*/
|
|
12
|
-
type?: treeType
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* 设置成矩形树图(rect)时有效,表示树图方向
|
|
16
|
-
*/
|
|
17
|
-
direction?: treeDirectionType
|
|
18
|
-
|
|
19
|
-
/**
|
|
20
|
-
* 树图x坐标
|
|
21
|
-
*/
|
|
22
|
-
x?: number
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
* 树图y坐标
|
|
26
|
-
*/
|
|
27
|
-
y?: number
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* 设置成矩形树图(rect)时有效,表示矩形宽
|
|
31
|
-
*/
|
|
32
|
-
width?: number
|
|
33
|
-
|
|
34
|
-
/**
|
|
35
|
-
* 设置成矩形树图(rect)时有效,表示矩形高
|
|
36
|
-
*/
|
|
37
|
-
height?: number
|
|
38
|
-
|
|
39
|
-
/**
|
|
40
|
-
* 设置成圆树图(circle)时有效,表示圆树的半径
|
|
41
|
-
*/
|
|
42
|
-
radius?: number
|
|
43
|
-
|
|
44
|
-
/**
|
|
45
|
-
* 切换时长
|
|
46
|
-
*/
|
|
47
|
-
duration?: number
|
|
48
|
-
|
|
1
|
+
export type treeType = "plain" | "rect" | "circle"
|
|
2
|
+
export type treeDirectionType = "LR" | "RL" | "TB" | "BT"
|
|
3
|
+
|
|
4
|
+
export default interface TreeOptionType {
|
|
5
|
+
|
|
6
|
+
offsetX?: number
|
|
7
|
+
offsetY?: number
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* 树图类型
|
|
11
|
+
*/
|
|
12
|
+
type?: treeType
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* 设置成矩形树图(rect)时有效,表示树图方向
|
|
16
|
+
*/
|
|
17
|
+
direction?: treeDirectionType
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* 树图x坐标
|
|
21
|
+
*/
|
|
22
|
+
x?: number
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* 树图y坐标
|
|
26
|
+
*/
|
|
27
|
+
y?: number
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* 设置成矩形树图(rect)时有效,表示矩形宽
|
|
31
|
+
*/
|
|
32
|
+
width?: number
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* 设置成矩形树图(rect)时有效,表示矩形高
|
|
36
|
+
*/
|
|
37
|
+
height?: number
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* 设置成圆树图(circle)时有效,表示圆树的半径
|
|
41
|
+
*/
|
|
42
|
+
radius?: number
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* 切换时长
|
|
46
|
+
*/
|
|
47
|
+
duration?: number
|
|
48
|
+
|
|
49
49
|
}
|
package/types/WebGL.d.ts
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
import Object3DType from './Object3D'
|
|
2
|
-
import Matrix4Type from './Matrix4'
|
|
3
|
-
|
|
4
|
-
export default interface WebGLType {
|
|
5
|
-
|
|
6
|
-
matrix(initMatrix4?: number[]): Matrix4Type
|
|
7
|
-
|
|
8
|
-
/**
|
|
9
|
-
* 使用模型数据绘制
|
|
10
|
-
* @param object3D 记录着的模型数据
|
|
11
|
-
*/
|
|
12
|
-
render(object3D: Object3DType): void
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* 重新绘制
|
|
16
|
-
*/
|
|
17
|
-
review(): this
|
|
18
|
-
|
|
19
|
-
/**
|
|
20
|
-
* 返回变换矩阵
|
|
21
|
-
*/
|
|
22
|
-
getMatrix(): Matrix4Type
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
* 返回所有的Object3D内容
|
|
26
|
-
*/
|
|
27
|
-
getObject3D(): Object3DType[]
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* 设置区域
|
|
31
|
-
*/
|
|
32
|
-
setRegion(regionName: string | number): this
|
|
33
|
-
|
|
34
|
-
/**
|
|
35
|
-
* 获取区域
|
|
36
|
-
*/
|
|
37
|
-
getRegion(x: number, y: number): Promise<string>
|
|
38
|
-
|
|
1
|
+
import Object3DType from './Object3D'
|
|
2
|
+
import Matrix4Type from './Matrix4'
|
|
3
|
+
|
|
4
|
+
export default interface WebGLType {
|
|
5
|
+
|
|
6
|
+
matrix(initMatrix4?: number[]): Matrix4Type
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* 使用模型数据绘制
|
|
10
|
+
* @param object3D 记录着的模型数据
|
|
11
|
+
*/
|
|
12
|
+
render(object3D: Object3DType): void
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* 重新绘制
|
|
16
|
+
*/
|
|
17
|
+
review(): this
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* 返回变换矩阵
|
|
21
|
+
*/
|
|
22
|
+
getMatrix(): Matrix4Type
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* 返回所有的Object3D内容
|
|
26
|
+
*/
|
|
27
|
+
getObject3D(): Object3DType[]
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* 设置区域
|
|
31
|
+
*/
|
|
32
|
+
setRegion(regionName: string | number): this
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* 获取区域
|
|
36
|
+
*/
|
|
37
|
+
getRegion(x: number, y: number): Promise<string>
|
|
38
|
+
|
|
39
39
|
}
|
package/types/WebGLOption.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export default interface WebGLOptionType {
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* 是否支持区域管理,默认true
|
|
5
|
-
*/
|
|
6
|
-
region?: boolean
|
|
7
|
-
|
|
1
|
+
export default interface WebGLOptionType {
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 是否支持区域管理,默认true
|
|
5
|
+
*/
|
|
6
|
+
region?: boolean
|
|
7
|
+
|
|
8
8
|
}
|
package/types/animation.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
interface animationFun {
|
|
2
|
-
(deep: number): void
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
export default interface animationType {
|
|
6
|
-
(doback: animationFun, duration?: number, callback?: animationFun): Function
|
|
1
|
+
interface animationFun {
|
|
2
|
+
(deep: number): void
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
export default interface animationType {
|
|
6
|
+
(doback: animationFun, duration?: number, callback?: animationFun): Function
|
|
7
7
|
}
|
package/types/formatColor.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export default interface formatColor {
|
|
2
|
-
(color: string, format: string): number[] | string
|
|
1
|
+
export default interface formatColor {
|
|
2
|
+
(color: string, format: string): number[] | string
|
|
3
3
|
}
|
package/types/getLoopColors.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export default interface getLoopColorsType {
|
|
2
|
-
(num: number, alpha?: number): string[]
|
|
1
|
+
export default interface getLoopColorsType {
|
|
2
|
+
(num: number, alpha?: number): string[]
|
|
3
3
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export default interface getWebGLContextType {
|
|
2
|
-
(el: HTMLElement | null, scale?: number): WebGLRenderingContext
|
|
1
|
+
export default interface getWebGLContextType {
|
|
2
|
+
(el: HTMLElement | null, scale?: number): WebGLRenderingContext
|
|
3
3
|
}
|
package/types/painterConfig.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export type arcCapType = "butt" | "round" | "-round"
|
|
2
|
-
export type textAlignType = "left" | "center" | "right"
|
|
1
|
+
export type arcCapType = "butt" | "round" | "-round"
|
|
2
|
+
export type textAlignType = "left" | "center" | "right"
|
|
3
3
|
export type textBaselineType = "top" | "middle" | "bottom"
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export default interface resizeObserver {
|
|
2
|
-
(el: HTMLElement | null, callback: Function): Function
|
|
1
|
+
export default interface resizeObserver {
|
|
2
|
+
(el: HTMLElement | null, callback: Function): Function
|
|
3
3
|
}
|
package/types/ruler.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export interface rulerOptionType {
|
|
2
|
-
max?: number
|
|
3
|
-
min?: number
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
export default interface rulerType {
|
|
7
|
-
(maxValue: number, minValue: number, num: number, option?: rulerOptionType): number[]
|
|
1
|
+
export interface rulerOptionType {
|
|
2
|
+
max?: number
|
|
3
|
+
min?: number
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
export default interface rulerType {
|
|
7
|
+
(maxValue: number, minValue: number, num: number, option?: rulerOptionType): number[]
|
|
8
8
|
}
|
package/types/throttle.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import throttleOptionType from './throttleOption'
|
|
2
|
-
|
|
3
|
-
export default interface throttle {
|
|
4
|
-
(callback: Function, option?: throttleOptionType): Function
|
|
1
|
+
import throttleOptionType from './throttleOption'
|
|
2
|
+
|
|
3
|
+
export default interface throttle {
|
|
4
|
+
(callback: Function, option?: throttleOptionType): Function
|
|
5
5
|
}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
export type throttleOpportunityType = "begin" | "end" | "wide"
|
|
2
|
-
|
|
3
|
-
export default interface throttleOptionType {
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* 节流时长
|
|
7
|
-
*/
|
|
8
|
-
time?: number
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* 是否持续节流
|
|
12
|
-
*/
|
|
13
|
-
keep?: boolean
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* 执行时机
|
|
17
|
-
*
|
|
18
|
-
* begin(开始触发)、end(结束触发)、wide(第一次开始触发,其余结束触发)
|
|
19
|
-
*/
|
|
20
|
-
opportunity?: throttleOpportunityType
|
|
21
|
-
|
|
1
|
+
export type throttleOpportunityType = "begin" | "end" | "wide"
|
|
2
|
+
|
|
3
|
+
export default interface throttleOptionType {
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* 节流时长
|
|
7
|
+
*/
|
|
8
|
+
time?: number
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* 是否持续节流
|
|
12
|
+
*/
|
|
13
|
+
keep?: boolean
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* 执行时机
|
|
17
|
+
*
|
|
18
|
+
* begin(开始触发)、end(结束触发)、wide(第一次开始触发,其余结束触发)
|
|
19
|
+
*/
|
|
20
|
+
opportunity?: throttleOpportunityType
|
|
21
|
+
|
|
22
22
|
}
|
package/types/viewHandler.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export interface paramsType {
|
|
2
|
-
type: string
|
|
3
|
-
value: number,
|
|
4
|
-
normal: number[],
|
|
5
|
-
event: Event
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
export interface callbackFun {
|
|
9
|
-
(params: paramsType): void
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
export default interface viewHandlerType {
|
|
13
|
-
(callback: callbackFun): void
|
|
1
|
+
export interface paramsType {
|
|
2
|
+
type: string
|
|
3
|
+
value: number,
|
|
4
|
+
normal: number[],
|
|
5
|
+
event: Event
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export interface callbackFun {
|
|
9
|
+
(params: paramsType): void
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export default interface viewHandlerType {
|
|
13
|
+
(callback: callbackFun): void
|
|
14
14
|
}
|