code exist at runtime but it does not exist on the type Version: Deno 1.41.2 ```ts try { Deno.readTextFileSync("doesnt-exist"); } catch (e) { console.log((e as Deno.errors.NotFound).code); } ``` 