lazy-widgets
Version:
Typescript retained mode GUI for the HTML canvas API
12 lines (11 loc) • 346 B
TypeScript
import { WidgetProperties } from './Widget.js';
/**
* Optional constructor properties for widgets that have a `clickable` field,
* such as the {@link Button} widget.
*
* @category Core
*/
export interface ClickableWidgetProperties extends WidgetProperties {
/** Sets the `clickable` field. Defaults to true */
clickable?: boolean;
}