(condition: Condition)
| 43 | condition.type === 'OR'; |
| 44 | |
| 45 | const isAndCondition = (condition: Condition): condition is AndCondition => |
| 46 | condition.type === 'AND'; |
| 47 | |
| 48 | const isLeafCondition = (condition: Condition): condition is LeafCondition => |
| 49 | condition.type === 'LEAF'; |
no outgoing calls
no test coverage detected
searching dependent graphs…