MapComplete/UI/Base/UIInputElement.ts

10 lines
213 B
TypeScript
Raw Normal View History

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
}