Add global mouse position variable (#8793)

* 🎨 add global mouse position variable

* 🎨 add global mouse position variables

* 🎨 add global mouse position variable `coordinates`

* 🎨 Increase operating efficiency

* 🎨 Increase operating efficiency
This commit is contained in:
Yingyi / 颖逸 2023-07-21 10:39:54 +08:00 committed by GitHub
parent 9a383130f0
commit 4f812bcf0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -280,6 +280,14 @@ interface ISiyuan {
ctrlIsPressed?: boolean,
altIsPressed?: boolean,
shiftIsPressed?: boolean,
coordinates?: {
pageX: number,
pageY: number,
clientX: number,
clientY: number,
screenX: number,
screenY: number,
},
menus?: import("../menus").Menus
languages?: {
[key: string]: any;