8 lines
203 B
TypeScript
8 lines
203 B
TypeScript
|
import {UIElement} from "../UIElement";
|
||
|
import {UIEventSource} from "../UIEventSource";
|
||
|
|
||
|
export abstract class UIInputElement<T> extends UIElement{
|
||
|
|
||
|
abstract GetValue() : UIEventSource<T>;
|
||
|
|
||
|
}
|