(self: Action)
| 32 | const use = (id: number): Action => ({ op: OP_USE, id }) |
| 33 | const release = (id: number): Action => ({ op: OP_RELEASE, id }) |
| 34 | const isAcquire = (self: Action): self is Use => self.op === OP_ACQUIRE |
| 35 | const isUse = (self: Action): self is Use => self.op === OP_USE |
| 36 | const isRelease = (self: Action): self is Use => self.op === OP_RELEASE |
| 37 |
no outgoing calls
no test coverage detected
searching dependent graphs…