mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* 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
|