import {
- type FunctionalComponent,
type GenericComponentInstance,
type TransitionElement,
type TransitionHooks,
isFragment,
} from '../block'
import {
+ type FunctionalVaporComponent,
type VaporComponentInstance,
applyFallthroughProps,
isVaporComponent,
return t
}
-export const VaporTransition: FunctionalComponent<TransitionProps> =
- /*@__PURE__*/ decorate((props, { slots, attrs }) => {
+export const VaporTransition: FunctionalVaporComponent = /*@__PURE__*/ decorate(
+ (props, { slots, attrs }) => {
const children = (slots.default && slots.default()) as any as Block
if (!children) return
)
return children
- })
+ },
+)
const getTransitionHooksContext = (
key: String,