class GenericNumber<T> {
zeroValue:T,
add:(x:T,y:T)=>T
}
let myGenericNumber = new GeneriNumber<number>()
let result2 = myGenericNumber.add(1, 2);
console.log(result2)
ask why there is no add method, and how should I understand the introspection class