IContext > IInput

This commit is contained in:
barsdeveloper
2022-04-14 23:04:44 +02:00
parent d6aa7b22d2
commit 796deac851
9 changed files with 43 additions and 29 deletions

View File

@@ -1,6 +1,6 @@
// @ts-check
import IContext from "../IContext"
import IInput from "../IInput"
import Utility from "../../Utility"
/**
@@ -9,9 +9,9 @@ import Utility from "../../Utility"
/**
* @template {HTMLElement} T
* @extends {IContext<T>}
* @extends {IInput<T>}
*/
export default class IPointing extends IContext {
export default class IPointing extends IInput {
constructor(target, blueprint, options) {
super(target, blueprint, options)