Type Alias ForInStatement<X>

ForInStatement<X>: X & {
    body: Statement<X>;
    left: DeclarablePattern<X>;
    right: Expression<X>;
    type: "ForInStatement";
}

Type Parameters

  • X