The 'oldValue' and 'newValue' of change event of RadioGroup are marked as of type Number, while they should be of type String.
It is written that the 'oldValue' and 'newValue' are of type Number, but the logged values are strings
Current TypeScript definition:
interface RadioGroupChangeEvent extends RadioGroupEvent {
target?: JQuery;
oldValue?: number;
newValue?: number;
}
It should be marked that the oldValue and newValue are Strings.