lazy-widgets
Version:
Typescript retained mode GUI for the HTML canvas API
15 lines • 458 B
JavaScript
import { WidgetEvent, PropagationModel } from './WidgetEvent.js';
/**
* A generic event that trickles down a UI tree. This is an abstract class and
* must be implemented in child classes.
*
* @category Event
*/
export class TricklingEvent extends WidgetEvent {
constructor(reversed = false) {
super();
this.reversed = reversed;
this.propagation = PropagationModel.Trickling;
}
}
//# sourceMappingURL=TricklingEvent.js.map