(condition: Condition)
| 40 | import { composeWithUi } from './uischema'; |
| 41 | |
| 42 | const isOrCondition = (condition: Condition): condition is OrCondition => |
| 43 | condition.type === 'OR'; |
| 44 | |
| 45 | const isAndCondition = (condition: Condition): condition is AndCondition => |
| 46 | condition.type === 'AND'; |
no outgoing calls
no test coverage detected
searching dependent graphs…