UNPKG

lazy-widgets

Version:

Typescript retained mode GUI for the HTML canvas API

8 lines (7 loc) 339 B
import { TricklingEvent } from './TricklingEvent.js'; import type { Widget } from '../widgets/Widget.js'; /** A {@link TricklingEvent} which can be targeted. */ export declare abstract class TargetableTricklingEvent extends TricklingEvent { readonly target: Widget | null; constructor(target: Widget | null, reversed?: boolean); }