Type Alias SwitchStatement<X>

SwitchStatement<X>: X & {
    cases: SwitchCase<X>[];
    discriminant: Expression<X>;
    type: "SwitchStatement";
}

Type Parameters

  • X