You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constalice: Person={name: 'Alice',occupation: 'TypeScript developer'// ~~~~~~~~~ Object literal may only specify known properties,// and 'occupation' does not exist in type 'Person'};constbob={name: 'Bob',occupation: 'JavaScript developer'}asPerson;// No error
interfacePerson{name: string;}constbody=document.body;constel=bodyasPerson;// ~~~~~~~~~~~~~~// Conversion of type 'HTMLElement' to type 'Person' may be a mistake because// neither type sufficiently overlaps with the other. If this was intentional,// convert the expression to 'unknown' first.