UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

15 lines (14 loc) 470 B
import type { FunctionalComponent } from 'vue'; import type { RenderNode } from './BaseSelect'; export interface TransBtnProps { class: string; customizeIcon: RenderNode; customizeIconProps?: any; onMousedown?: (payload: MouseEvent) => void; onClick?: (payload: MouseEvent) => void; } export interface TransBtnType extends FunctionalComponent<TransBtnProps> { displayName: string; } declare const TransBtn: TransBtnType; export default TransBtn;