Skip to content

Commit ce35159

Browse files
committed
chore: fix types
1 parent c7c13c2 commit ce35159

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/core/vdom/helpers/normalize-scoped-slots.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import { emptyObject } from 'core/util/index'
44

5-
export function normalizeScopedSlots (slots: { [key: string]: Function }) {
5+
export function normalizeScopedSlots (slots: { [key: string]: Function } | void): any {
66
if (!slots) {
77
return emptyObject
88
} else if (slots._normalized) {

0 commit comments

Comments
 (0)