E0219: interface properties are always public and cannot be private
TypeScript interfaces describe the properties of objects usable from outside
that object's class. Therefore, all interface properties must be public.
It is an error to declare a private property in an interface:
To fix this error, remove the private property from the interface: