An {#if ...} block

interface IfBlock {
    alternate: null | Fragment;
    consequent: Fragment;
    elseif: boolean;
    end: number;
    start: number;
    test: Expression;
    type: "IfBlock";
}

Hierarchy (View Summary)

Properties

alternate: null | Fragment
consequent: Fragment
elseif: boolean
end: number
start: number
type: "IfBlock"