fix(types): fix typescript error when spreading $props(#5968)
This commit is contained in:
@@ -86,7 +86,7 @@ export { h } from './h'
|
||||
// Advanced render function utilities
|
||||
export { createVNode, cloneVNode, mergeProps, isVNode } from './vnode'
|
||||
// VNode types
|
||||
export { Fragment, Text, Comment, Static } from './vnode'
|
||||
export { Fragment, Text, Comment, Static, VNodeRef } from './vnode'
|
||||
// Built-in components
|
||||
export { Teleport, TeleportProps } from './components/Teleport'
|
||||
export { Suspense, SuspenseProps } from './components/Suspense'
|
||||
|
||||
@@ -43,6 +43,7 @@ import { convertLegacyComponent } from './compat/component'
|
||||
import { convertLegacyVModelProps } from './compat/componentVModel'
|
||||
import { defineLegacyVNodeProperties } from './compat/renderFn'
|
||||
import { callWithAsyncErrorHandling, ErrorCodes } from './errorHandling'
|
||||
import { ComponentPublicInstance } from './componentPublicInstance'
|
||||
|
||||
export const Fragment = Symbol(__DEV__ ? 'Fragment' : undefined) as any as {
|
||||
__isFragment: true
|
||||
@@ -68,7 +69,10 @@ export type VNodeTypes =
|
||||
export type VNodeRef =
|
||||
| string
|
||||
| Ref
|
||||
| ((ref: object | null, refs: Record<string, any>) => void)
|
||||
| ((
|
||||
ref: Element | ComponentPublicInstance | null,
|
||||
refs: Record<string, any>
|
||||
) => void)
|
||||
|
||||
export type VNodeNormalizedRefAtom = {
|
||||
i: ComponentInternalInstance
|
||||
|
||||
6
packages/runtime-dom/types/jsx.d.ts
vendored
6
packages/runtime-dom/types/jsx.d.ts
vendored
@@ -40,7 +40,6 @@ export interface CSSProperties
|
||||
* For examples and more information, visit:
|
||||
* https://github.com/frenic/csstype#what-should-i-do-when-i-get-type-errors
|
||||
*/
|
||||
|
||||
[v: `--${string}`]: string | number | undefined
|
||||
}
|
||||
|
||||
@@ -1311,10 +1310,7 @@ import * as RuntimeCore from '@vue/runtime-core'
|
||||
|
||||
type ReservedProps = {
|
||||
key?: string | number | symbol
|
||||
ref?:
|
||||
| string
|
||||
| RuntimeCore.Ref
|
||||
| ((ref: Element | RuntimeCore.ComponentPublicInstance | null) => void)
|
||||
ref?: RuntimeCore.VNodeRef
|
||||
ref_for?: boolean
|
||||
ref_key?: string
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user