diff --git a/types/vnode.d.ts b/types/vnode.d.ts index d6f23ec3b67..533e61f169b 100644 --- a/types/vnode.d.ts +++ b/types/vnode.d.ts @@ -22,6 +22,7 @@ type ScopedSlotReturnValue = | VNode | string | boolean + | number | null | undefined | ScopedSlotReturnArray @@ -37,6 +38,7 @@ export type VNodeChildren = | [ScopedSlot] | string | boolean + | number | null | undefined export interface VNodeChildrenArrayContents