Various fixes

This commit is contained in:
barsdeveloper
2022-03-28 23:04:24 +02:00
parent ca5948792a
commit a0eeca11d1
73 changed files with 446 additions and 125 deletions

View File

@@ -1,3 +1,5 @@
// @ts-check
import Configuration from "../../Configuration"
import IPointing from "./IPointing"

View File

@@ -1,3 +1,5 @@
// @ts-check
import IPointing from "./IPointing"
export default class IMouseWheel extends IPointing {

View File

@@ -1,3 +1,5 @@
// @ts-check
import IContext from "../IContext"
import Utility from "../../Utility"

View File

@@ -1,3 +1,5 @@
// @ts-check
import IMouseClickDrag from "./IMouseClickDrag"
import LinkElement from "../../element/LinkElement"
import LinkMessageElement from "../../element/LinkMessageElement"

View File

@@ -1,3 +1,5 @@
// @ts-check
import IMouseClickDrag from "./IMouseClickDrag"
import Utility from "../../Utility"

View File

@@ -1,3 +1,5 @@
// @ts-check
import IMouseClickDrag from "./IMouseClickDrag"
export default class MouseScrollGraph extends IMouseClickDrag {

View File

@@ -1,3 +1,5 @@
// @ts-check
import Configuration from "../../Configuration"
import IPointing from "./IPointing"

View File

@@ -1,3 +1,5 @@
// @ts-check
import IMouseClickDrag from "./IMouseClickDrag"
export default class Select extends IMouseClickDrag {

View File

@@ -1,3 +1,5 @@
// @ts-check
import IContext from "../IContext"
export default class Unfocus extends IContext {

View File

@@ -1,3 +1,5 @@
// @ts-check
import IMouseWheel from "./IMouseWheel"
export default class Zoom extends IMouseWheel {