2024-10-23 11:31:25 +08:00

13 lines
414 B
TypeScript

import RTransitionComponent from './src/index.vue'
import transitionComponentProps from './src/props'
import type * as RTransitionComponentType from './src/types'
import type { ExtractPublicPropTypes } from 'vue'
export type TransitionComponentProps = ExtractPublicPropTypes<
typeof transitionComponentProps
>
export type { RTransitionComponentType }
export { RTransitionComponent, transitionComponentProps }