mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 18:01:24 +08:00
12 lines
265 B
TypeScript
12 lines
265 B
TypeScript
|
import { buildProps } from '@element-plus/utils'
|
||
|
|
||
|
import type { ExtractPropTypes } from 'vue'
|
||
|
|
||
|
export const tooltipTriggerV2Props = buildProps({
|
||
|
asChild: Boolean,
|
||
|
} as const)
|
||
|
|
||
|
export type TooltipTriggerV2Props = ExtractPropTypes<
|
||
|
typeof tooltipTriggerV2Props
|
||
|
>
|