Implement #2: simulate hover event

This commit is contained in:
Yanzhen Yu
2018-11-01 13:31:09 +08:00
parent 77dcfd8360
commit e9add18029
4 changed files with 22 additions and 3 deletions

View File

@@ -159,6 +159,7 @@ export type mousemoveCallBack = (p: mousePosition[]) => void;
export type mousePosition = {
x: number;
y: number;
id: number;
timeOffset: number;
};