Type Alias DoWhileStatement<X>

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

Type Parameters

  • X