We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb6a091 commit 2b60870Copy full SHA for 2b60870
packages/runtime-core/src/vnode.ts
@@ -93,8 +93,7 @@ type VNodeChildAtom =
93
| undefined
94
| void
95
96
-export interface VNodeArrayChildren
97
- extends Array<VNodeArrayChildren | VNodeChildAtom> {}
+export type VNodeArrayChildren = Array<VNodeArrayChildren | VNodeChildAtom>
98
99
export type VNodeChild = VNodeChildAtom | VNodeArrayChildren
100
0 commit comments