Takes a value that could be never, and if it is never it goes to the Fallback value.
never
Fallback
const value: never = (undefined as never);NeverFallback<typeof value, number>; // Will be number
Takes a value that could be
never
, and if it isnever
it goes to theFallback
value.Example