| 4 | |
| 5 | export type VNodeChildren = VNodeChildrenArrayContents | [ScopedSlot] | string; |
| 6 | export interface VNodeChildrenArrayContents { |
| 7 | [x: number]: VNode | string | VNodeChildren; |
| 8 | } |
| 9 | |
| 10 | export interface VNode { |
| 11 | tag?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected