Why are "counter" and "type" prefixed with a plus in the following excerpt?
export type counterStateType = {
+counter: number
};
type actionType = {
+type: string
};
(this code is taken from the electron-react-boilerplate app that I am trying to get my head around. I have googled and binged and all I've managed to establish is that types come from "Flow").