Interfaces de destruição da maneira mais simples << Java Script >>
function printLabel(labelledObj: { label: string }) {
console.log(labelledObj.label);
}
let myObj = {size: 10, label: "Size 10 Object"};
printLabel(myObj);
Upset Unicorn