TS2739
error TS2739: Type ‘
{}
‘ is missing the following properties from type ‘Person
‘:age
,name
Broken Code ❌
1 |
|
Fixed Code ✔️
The object doesn’t have any properties, so it cannot be assigned to the type of Person
. We have to add the missing properties to fix this error:
1 |
|