Interface IfStatement

interface IfStatement {
    condition: Expression;
    documentation?: string;
    falseBody?: null | Statement;
    id: number;
    nodeType: "IfStatement";
    src: string;
    trueBody: Statement;
}

Properties

condition: Expression
documentation?: string
falseBody?: null | Statement
id: number
nodeType: "IfStatement"
src: string
trueBody: Statement