Interfaces destructuration de la manière la plus simple << Script Java >>

function printLabel(labelledObj: { label: string }) {
    console.log(labelledObj.label);
}

let myObj = {size: 10, label: "Size 10 Object"};
printLabel(myObj);
Upset Unicorn