Concept Flow - Readonly properties in interfaces
Define interface with readonly property
Create object implementing interface
Try to modify readonly property
Error: Cannot assign
This flow shows defining an interface with a readonly property, creating an object from it, and what happens if you try to change that property.