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
9 lines
276 B
TypeScript
9 lines
276 B
TypeScript
import { withInstall } from '@element-plus/utils'
|
|
import Drawer from './src/drawer.vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils'
|
|
|
|
export const ElDrawer: SFCWithInstall<typeof Drawer> = withInstall(Drawer)
|
|
export default ElDrawer
|
|
|
|
export * from './src/drawer'
|