15 lines
470 B
TypeScript
15 lines
470 B
TypeScript
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;
|