UNPKG

ziko

Version:

a versatile javaScript framework offering a rich set of UI components, advanced mathematical utilities, reactivity, animations, client side routing and graphics capabilities

16 lines (14 loc) 427 B
import { __ZikoEvent__ } from "./__ZikoEvent__.js"; import { Events } from "./__Events__.js"; class ZikoEventTouch extends __ZikoEvent__{ constructor(target, customizer){ super(target, Events.Touch, details_setter, customizer) } } function details_setter(){ } const bindTouchEvent = (target, customizer) => new ZikoEventTouch(target, customizer) export{ bindTouchEvent, ZikoEventTouch }