Add input validation

This commit is contained in:
Pieter Vander Vennet 2020-07-23 17:32:18 +02:00
parent ef593654f4
commit 1488caf362
8 changed files with 66 additions and 17 deletions

View file

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