I am currently trying to convert my received JSON Object into a TypeScript class with the same attributes and I cannot get it to work. What am I doing wrong?
let employee = JSON.parse(employeeString);
Remember: Strong typings is compile time only since javascript doesn't support it.