We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b8fe49 commit 7eda375Copy full SHA for 7eda375
src/index.ts
@@ -25,3 +25,5 @@ export {
25
MountingOptions,
26
createWrapperError
27
}
28
+
29
+export type { ComponentMountingOptions } from './mount'
src/mount.ts
@@ -26,7 +26,7 @@ import { createInstance } from './createInstance'
// NOTE this should come from `vue`
type PublicProps = VNodeProps & AllowedComponentProps & ComponentCustomProps
-type ComponentMountingOptions<T> = T extends DefineComponent<
+export type ComponentMountingOptions<T> = T extends DefineComponent<
30
infer PropsOrPropOptions,
31
any,
32
infer D,
0 commit comments