Skip to content

Commit 1b1e93f

Browse files
[autofix.ci] apply automated fixes
1 parent 02984a4 commit 1b1e93f

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

packages/runtime-core/src/apiSetupHelpers.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,14 @@ type InferDefaults<T> = {
319319
[K in keyof T]?: InferDefault<T, T[K]>
320320
}
321321

322-
type NativeType = null | undefined | number | string | boolean | symbol | Function
322+
type NativeType =
323+
| null
324+
| undefined
325+
| number
326+
| string
327+
| boolean
328+
| symbol
329+
| Function
323330

324331
type InferDefault<P, T> =
325332
| ((props: P) => T & {})

0 commit comments

Comments
 (0)