Type Alias ForStatement<X>

ForStatement<X>: X & {
    body: Statement<X>;
    init: DeclarableExpression<X> | null;
    test: Expression<X> | null;
    type: "ForStatement";
    update: Expression<X> | null;
}

Type Parameters

  • X