import {UIElement} from "../UIElement"; import {UIEventSource} from "../../Logic/UIEventSource"; export abstract class InputElement extends UIElement{ abstract GetValue() : UIEventSource; abstract IsSelected: UIEventSource; abstract IsValid(t: T) : boolean; }