DEBSOURCES
Skip Quicknav
sources / node-typescript / 5.2.2-1 / tests / baselines / reference / catch.types
12345678910111213
//// [tests/cases/compiler/catch.ts] //// === catch.ts === function f() { >f : () => void try {} catch(e) { } >e : any try {} catch(e) { } >e : any }