chore: run updated prettier
This commit is contained in:
@@ -257,7 +257,7 @@ if (__COMPAT__) {
|
||||
|
||||
// export the public type for h/tsx inference
|
||||
// also to avoid inline import() in generated d.ts files
|
||||
export const BaseTransition = (BaseTransitionImpl as any) as {
|
||||
export const BaseTransition = BaseTransitionImpl as any as {
|
||||
new (): {
|
||||
$props: BaseTransitionProps<any>
|
||||
}
|
||||
|
||||
@@ -329,7 +329,7 @@ if (__COMPAT__) {
|
||||
|
||||
// export the public type for h/tsx inference
|
||||
// also to avoid inline import() in generated d.ts files
|
||||
export const KeepAlive = (KeepAliveImpl as any) as {
|
||||
export const KeepAlive = KeepAliveImpl as any as {
|
||||
__isKeepAlive: true
|
||||
new (): {
|
||||
$props: VNodeProps & KeepAliveProps
|
||||
|
||||
@@ -87,9 +87,7 @@ export const SuspenseImpl = {
|
||||
}
|
||||
|
||||
// Force-casted public typing for h and TSX props inference
|
||||
export const Suspense = ((__FEATURE_SUSPENSE__
|
||||
? SuspenseImpl
|
||||
: null) as any) as {
|
||||
export const Suspense = (__FEATURE_SUSPENSE__ ? SuspenseImpl : null) as any as {
|
||||
__isSuspense: true
|
||||
new (): { $props: VNodeProps & SuspenseProps }
|
||||
}
|
||||
@@ -520,13 +518,8 @@ function createSuspenseBoundary(
|
||||
return
|
||||
}
|
||||
|
||||
const {
|
||||
vnode,
|
||||
activeBranch,
|
||||
parentComponent,
|
||||
container,
|
||||
isSVG
|
||||
} = suspense
|
||||
const { vnode, activeBranch, parentComponent, container, isSVG } =
|
||||
suspense
|
||||
|
||||
// invoke @fallback event
|
||||
triggerEvent(vnode, 'onFallback')
|
||||
|
||||
@@ -371,7 +371,7 @@ function hydrateTeleport(
|
||||
}
|
||||
|
||||
// Force-casted public typing for h and TSX props inference
|
||||
export const Teleport = (TeleportImpl as any) as {
|
||||
export const Teleport = TeleportImpl as any as {
|
||||
__isTeleport: true
|
||||
new (): { $props: VNodeProps & TeleportProps }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user