readonly
↔ Property Modifier JS Keyword to set Object property as read-only
!snippet interface
with readonly
prop
interface MyInterface {
readonly prop: number;
}
References
interface MyInterface {
readonly prop: number;
}