You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type __Instance = (typeof __component extends new (...args: any) => any ? InstanceType<typeof __component> : typeof __component) & {${isVapor ? '\n/** @deprecated This is only a type when used in Vapor Instances. */' : ''}
47
-
$props: __Props
48
-
}
49
-
return {} as {
50
-
__isFragment?: never
51
-
__isTeleport?: never
52
-
__isSuspense?: never
53
-
new (props: __Props): __Instance,
54
-
setup: (props: __Props, ctx?: {
55
-
attrs?: Record<string, any>
56
-
slots?: __Slots,
57
-
expose?: (exposed: keyof __Exposed extends never ? __Instance : __Exposed) => any
58
-
}) => {},
49
+
return {} as Omit<typeof __component, 'constructor'> & {
50
+
new (props?: __Props): InstanceType<typeof __component> & {${isVapor ? '\n/** @deprecated This is only a type when used in Vapor Instances. */\n$props: __Props' : ''}},
0 commit comments