mapcomplete/UI/Base/UIInputElement.ts

8 lines
203 B
TypeScript
Raw Normal View History

2020-07-05 16:59:47 +00:00
import {UIElement} from "../UIElement";
import {UIEventSource} from "../UIEventSource";
export abstract class UIInputElement<T> extends UIElement{
abstract GetValue() : UIEventSource<T>;
}