Finishing refactoring

This commit is contained in:
Pieter Vander Vennet 2020-07-20 21:39:07 +02:00
parent 8026e99824
commit 00d95c4be1
8 changed files with 86 additions and 57 deletions

View file

@ -8,6 +8,4 @@ export abstract class InputElement<T> extends UIElement{
abstract IsValid(t: T) : boolean;
abstract ShowValue(t: T) : boolean;
}