test-utils icon indicating copy to clipboard operation
test-utils copied to clipboard

Feature request: Type inference support for wrapper emitted method

Open egorbabintcev opened this issue 11 months ago • 2 comments

Is your feature request related to a problem? Please describe.

Is there a reason why the signature of the emitted method in the wrapper class is limited to primitive types and does not infer possible event names and types of their arguments using it's generic class type argument.

Indeed, in typescript projects, it is much more convenient to have autocompletion for possible events that are declared by a component.

Describe the solution you'd like

Infer possible event names (and types of their arguments) if the component declares the appropriate type annotations.

Describe alternatives you've considered

As a temporary alternative, I created a wrapper over the mount function, which redefines the signature of the emitted function in the returned object using typecast (while its runtime implementation remains the same). I calculate the types based on the signature of the $emit method using the generic Parameters helper.

Additional context

-

egorbabintcev avatar Jan 15 '25 13:01 egorbabintcev

Hi @egorbabintcev

I think that would be a welcome improvement 👍 Feel free to open a PR and we will gladly review and merge it!

cexbrayat avatar Jan 15 '25 14:01 cexbrayat

@cexbrayat Thanks for the reply. I'll try to do it soon.

egorbabintcev avatar Jan 16 '25 11:01 egorbabintcev