mapcomplete/UI/Base/CheckBox.ts

17 lines
287 B
TypeScript
Raw Normal View History

2020-07-20 13:30:58 +02:00
import {UIElement} from "../UIElement";
import {UIEventSource} from "../UIEventSource";
export class CheckBox extends UIElement{
constructor(data: UIEventSource<boolean>) {
super(data);
}
protected InnerRender(): string {
return "";
}
}