[Typescript] Exhaustive conditionals - UnreachableError helper class

class UnreachableError extends Error {
  constructor(_nvr: never, message: string) {
    super(message)
  }
}

class Car {
  drive() {
    console.log("vroom")
  }
}
class Truck {
  tow() {
    console.log("dragging something")
  }
}
class Boat {
  isFloating() {
    return true
  }
}
type Vehicle = Truck | Car | Boat
 
let myVehicle: Vehicle = obtainRandomVehicle()
 
// The exhaustive conditional
if (myVehicle instanceof Truck) {
  myVehicle.tow() // Truck
} else if (myVehicle instanceof Car) {
  myVehicle.drive() // Car
} else {
  // NEITHER! 
  // Argument of type 'Boat' is not assignable to parameter of type 'never'
  throw new UnreachableError(myVehicle, `There is a unreacheable code for ${myVehicle}`)
}

 

posted @ 2022-08-03 01:59  Zhentiw  阅读(11)  评论(0编辑  收藏  举报