We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proposal:
Change line 45 index.d.ts from:
export function render( TestComponent: any, // this makes me sad :sob: options?: RenderOptions, ): RenderResult
To:
export function render( TestComponent: new () => ComponentPublicInstance, options?: RenderOptions, ): RenderResult
The text was updated successfully, but these errors were encountered:
Will this handle all Component signatures? If I recall correctly, we had a hard time doing this in the official Vue Test Utils for Vue 3 – Check this out: https://github.com/vuejs/vue-test-utils-next/blob/master/src/mount.ts
Sorry, something went wrong.
Probably not if i look at the VTU implementation. I guess this ticket can be closed.
No branches or pull requests
Proposal:
Change line 45 index.d.ts from:
To:
The text was updated successfully, but these errors were encountered: