jay
jay copied to clipboard
Feature request: Provide smart suggestion by TypeScript .d.ts file
For example here are index.js and index.d.ts
index.js
export default new Proxy(...)
index.d.ts
declare const x: { y: number, z: string }
export default x
Then when the repl loads index.js, it can infer that the default export have property y and z