mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-07 00:38:47 +08:00
6 lines
184 B
TypeScript
6 lines
184 B
TypeScript
import { Widget, WidgetOptions } from "./Widget";
|
|
|
|
export type ControlOptions = WidgetOptions;
|
|
|
|
export abstract class Control<E extends HTMLElement = HTMLElement> extends Widget<E> {}
|