(self: State)
| 25 | export const Closed: State = { _tag: "Closed" } |
| 26 | |
| 27 | const isActive = (self: State): boolean => self._tag === "Active" |
| 28 | const isChanged = (self: State): boolean => self._tag === "Changed" |
| 29 | const isClosed = (self: State): boolean => self._tag === "Closed" |
| 30 |
no outgoing calls
no test coverage detected