deno_core
deno_core copied to clipboard
`Deno.core` Type Autocompletion for Custom TS Engine
Deno.core Type Autocompletion for Custom TS Engine
I'm building a custom TypeScript engine using the deno_core crate, following the Roll Your Own JavaScript Runtime blog post.
During my use of Deno, I noticed that the global Deno object lacks types for Deno.core. I understand this is intentional, as Deno.core is an unstable internal API. However, I only need the methods I'm adding in an extension to the runtime to have their types for autocompletion.
It would be really helpful to have types on Deno.core to get proper autocomplete support. Is there a way of doing this, or can this be exposed in some manner?
I'm open to help with this if needed.
Thanks!