mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-02 03:08:21 +08:00
79938178dd
* build: use vue-tsc to generate dts * reduce inline type declaration * fix: type checking failed * apply suggestions from code review * address PR comments
15 lines
442 B
TypeScript
15 lines
442 B
TypeScript
import { withInstall } from '@element-plus/utils'
|
|
import TooltipV2 from './src/tooltip.vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils'
|
|
|
|
export const ElTooltipV2: SFCWithInstall<typeof TooltipV2> =
|
|
withInstall(TooltipV2)
|
|
export * from './src/arrow'
|
|
export * from './src/content'
|
|
export * from './src/root'
|
|
export * from './src/tooltip'
|
|
export * from './src/trigger'
|
|
export * from './src/constants'
|
|
|
|
export default ElTooltipV2
|