(id: number)
| 29 | } |
| 30 | |
| 31 | const acquire = (id: number): Action => ({ op: OP_ACQUIRE, id }) |
| 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 |
no outgoing calls
no test coverage detected
searching dependent graphs…