It's easy enough if the type doesn't matter, but I was hoping to retain the type being returned. I tried this, but it just says the getData() function returns 'unknown'.
Simplified example:
class DataHolder<DataType> {
data: DataType;
constructor(data: DataType) {
this.data = data;
}
}
function getData<U, T extends DataHolder<U>>(holder: T) {
return holder.data;
}
let x = getData(new DataHolder<number>(10));
let y = x * 3; // error x is unknown
You'e using too many generics.
getData
is polymorphic only in one way, therefore it needs only one generic.Alternatively:
Both will work as expected.