tdesign-mobile-vue
Version:
tdesign-mobile-vue
36 lines (35 loc) • 913 B
TypeScript
import { TdFabProps } from './type';
import { PropType } from 'vue';
declare const _default: {
buttonProps: {
type: PropType<TdFabProps['buttonProps']>;
};
draggable: {
type: PropType<TdFabProps['draggable']>;
default: TdFabProps['draggable'];
};
icon: {
type: PropType<TdFabProps['icon']>;
};
magnet: {
type: PropType<TdFabProps['magnet']>;
};
style: {
type: PropType<TdFabProps['style']>;
default: TdFabProps['style'];
};
text: {
type: StringConstructor;
default: string;
};
xBounds: {
type: PropType<TdFabProps['xBounds']>;
};
yBounds: {
type: PropType<TdFabProps['yBounds']>;
};
onClick: PropType<TdFabProps['onClick']>;
onDragEnd: PropType<TdFabProps['onDragEnd']>;
onDragStart: PropType<TdFabProps['onDragStart']>;
};
export default _default;