tdesign-mobile-vue
Version:
tdesign-mobile-vue
35 lines (34 loc) • 858 B
TypeScript
import { PropType } from 'vue';
declare const _default: {
buttonProps: {
type: PropType<import("..").TdButtonProps>;
};
draggable: {
type: PropType<boolean | import("./type").FabDirectionEnum>;
default: boolean;
};
icon: {
type: PropType<(h: typeof import("vue").h) => import("..").SlotReturnValue>;
};
style: {
type: PropType<string | import("..").Styles>;
default: string;
};
text: {
type: StringConstructor;
default: string;
};
yBounds: {
type: PropType<(string | number)[]>;
};
onClick: PropType<(context: {
e: MouseEvent;
}) => void>;
onDragEnd: PropType<(context: {
e: TouchEvent;
}) => void>;
onDragStart: PropType<(context: {
e: TouchEvent;
}) => void>;
};
export default _default;