I stumbled upon the following code written in js FlowType (I'm interested in knowing the value of + in the context of FlowType not in general JS).
Could you explain to me what the symbol +before the property means in the code below:
export type User = {
+name: string,
+surname: string,
+personId: PourceId,
}
I can not find the link in the documentation, any link is also welcome.
source
share