UNPKG

lazy-widgets

Version:

Typescript retained mode GUI for the HTML canvas API

9 lines 331 B
import { TricklingEvent } from './TricklingEvent.js'; /** A {@link TricklingEvent} which can be targeted. */ export class TargetableTricklingEvent extends TricklingEvent { constructor(target, reversed = false) { super(reversed); this.target = target; } } //# sourceMappingURL=TargetableTricklingEvent.js.map