Type Alias WhileStatement<X>

WhileStatement<X>: X & {
    body: Statement<X>;
    test: Expression<X>;
    type: "WhileStatement";
}

Type Parameters

  • X