lazy-widgets
Version:
Typescript retained mode GUI for the HTML canvas API
8 lines (7 loc) • 339 B
TypeScript
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);
}