mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +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
11 lines
374 B
TypeScript
11 lines
374 B
TypeScript
import { withInstall } from '@element-plus/utils'
|
|
import Tooltip from './src/tooltip.vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils'
|
|
|
|
export const ElTooltip: SFCWithInstall<typeof Tooltip> = withInstall(Tooltip)
|
|
export * from './src/tooltip'
|
|
export * from './src/trigger'
|
|
export * from './src/content'
|
|
export * from './src/constants'
|
|
export default ElTooltip
|