2020-07-05 18:59:47 +02:00
|
|
|
import {UIElement} from "../UIElement";
|
|
|
|
import {UIEventSource} from "../UIEventSource";
|
|
|
|
|
|
|
|
export abstract class UIInputElement<T> extends UIElement{
|
|
|
|
|
|
|
|
abstract GetValue() : UIEventSource<T>;
|
|
|
|
|
2020-07-20 13:28:45 +02:00
|
|
|
|
|
|
|
|
2020-07-05 18:59:47 +02:00
|
|
|
}
|