typescript is typeof interface code example
Example 1: typescript valueof interface
type ValueOf<T> = T[keyof T];
Example 2: typescript interface
interface LabeledValue {
label: string;
}
function printLabel(labeledObj: LabeledValue) {
console.log(labeledObj.label);
}
let myObj = { size: 10, label: "Size 10 Object" };
printLabel(myObj);Try