981377660LMT / ts

ts学习
6 stars 1 forks source link

never 的作用 #513

Open 981377660LMT opened 3 months ago

981377660LMT commented 3 months ago
function foo(): number {
  todo()
}

function todo(): never {
  throw new Error('todo')
}

never 可以赋给任何类型的值