indexType aliases
Type Alias: PixiVNJsonConditionalStatements<Then>
> PixiVNJsonConditionalStatements<Then> = PixiVNJsonStepSwitch<Then> | PixiVNJsonIfElse<Then | PixiVNJsonConditionalStatements<Then> | PixiVNJsonConditionalResultToCombine<Then>>
Defined in: src/schema/PixiVNJsonConditionalStatements.ts:12
A conditional statement that evaluates to a value of type Then.
It can be either:
- a PixiVNJsonStepSwitch — selects a result from a list based on a strategy (random, sequential, loop)
- a PixiVNJsonIfElse — evaluates a condition and returns the matching branch result, which may itself be another conditional or a PixiVNJsonConditionalResultToCombine
Type Parameters
Then
Then