Could someone assist me in understanding what is incorrect with the code snippet provided here? I am still learning Typescript.
interface ICalcValue {
readonly IsNumber: boolean;
readonly IsString: boolean;
}
interface ICalcValue<T> extends ICalcValue {
readonly T Value;
}