mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-26 04:27:26 +08:00
build: use vue-tsc to generate dts (#16111)
* build: use vue-tsc to generate dts * reduce inline type declaration * fix: type checking failed * apply suggestions from code review * address PR comments
This commit is contained in:
@ -1,7 +1,8 @@
|
||||
import { withInstall } from '@element-plus/utils'
|
||||
import Tooltip from './src/tooltip.vue'
|
||||
import type { SFCWithInstall } from '@element-plus/utils'
|
||||
|
||||
export const ElTooltip = withInstall(Tooltip)
|
||||
export const ElTooltip: SFCWithInstall<typeof Tooltip> = withInstall(Tooltip)
|
||||
export * from './src/tooltip'
|
||||
export * from './src/trigger'
|
||||
export * from './src/content'
|
||||
|
Reference in New Issue
Block a user