(
public branches: Array<ConditionalSelectBranch>,
public defaultValue?: SelectValueExpression,
)
| 204 | export class ConditionalSelect extends BaseExpression { |
| 205 | public type = `conditionalSelect` as const |
| 206 | constructor( |
| 207 | public branches: Array<ConditionalSelectBranch>, |
| 208 | public defaultValue?: SelectValueExpression, |
| 209 | ) { |
| 210 | super() |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected