jay icon indicating copy to clipboard operation
jay copied to clipboard

Feature request: Provide smart suggestion by TypeScript .d.ts file

Open Jack-Works opened this issue 6 years ago • 0 comments

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

Jack-Works avatar Jun 23 '19 01:06 Jack-Works