2020-07-20 15:54:50 +02:00
|
|
|
import {UIElement} from "../UIElement";
|
|
|
|
import {UIEventSource} from "../UIEventSource";
|
|
|
|
import {FixedUiElement} from "../Base/FixedUiElement";
|
|
|
|
|
|
|
|
export abstract class InputElement<T> extends UIElement{
|
|
|
|
|
|
|
|
abstract GetValue() : UIEventSource<T>;
|
|
|
|
|
|
|
|
abstract IsValid(t: T) : boolean;
|
2020-07-20 21:03:55 +02:00
|
|
|
|
2020-07-23 17:32:18 +02:00
|
|
|
}
|
|
|
|
|