其他分享
首页 > 其他分享> > [Typescript] Exhaustive conditionals - UnreachableError helper class

[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}`)
}

 

标签:UnreachableError,Typescript,helper,Car,Truck,myVehicle,type,class
来源: https://www.cnblogs.com/Answer1215/p/16545685.html