torch.tx.TernaryNode
export interface TernaryNode {
type: 'ternary';
condition: ASTNode;
consequent: ASTNode;
alternate: ASTNode;
start: number;
end: number;
}export interface TernaryNode {
type: 'ternary';
condition: ASTNode;
consequent: ASTNode;
alternate: ASTNode;
start: number;
end: number;
}