(condition: Condition)
| 46 | condition.type === 'AND'; |
| 47 | |
| 48 | const isLeafCondition = (condition: Condition): condition is LeafCondition => |
| 49 | condition.type === 'LEAF'; |
| 50 | |
| 51 | const isSchemaCondition = ( |
| 52 | condition: Condition |
no outgoing calls
no test coverage detected
searching dependent graphs…