1 2 3 4 5 6 7 8 9 10
function foo(): never { throw new Error("function"); } try { foo(); } catch (error) { console.log(error.stack); throw error; }