typescript update code example

Example 1: install typescript

npm install -g typescript

Example 2: how to update typescript

npm install -g typescript@latest

Example 3: install typescript

Don't forget to use the dev flag!!!
Yarn:
yarn global add --dev typescript
NPM:
npm install -g --save-dev typescript

Example 4: typescript

interface LabelledValue {
  label: string;
}

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

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