Type Alias AstStatementCondition

AstStatementCondition: {
    condition: AstExpression;
    falseStatements: readonly AstStatement[] | undefined;
    id: number;
    kind: "statement_condition";
    loc: SrcInfo;
    trueStatements: readonly AstStatement[];
}