(self: State)
| 24 | |
| 25 | const isActive = (self: State): boolean => self._tag === "Active" |
| 26 | const isChanged = (self: State): boolean => self._tag === "Changed" |
| 27 | const isClosed = (self: State): boolean => self._tag === "Closed" |
| 28 | |
| 29 | describe("Ref", () => { |