mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 09:21:25 +08:00
c6e22ce8ab
Co-authored-by: tangjinzhou <415800467@qq.com>
10 lines
301 B
JavaScript
10 lines
301 B
JavaScript
import PropTypes from '../_util/vue-types';
|
|
export default () => ({
|
|
visibilityHeight: PropTypes.number,
|
|
// onClick?: React.MouseEventHandler<any>;
|
|
target: PropTypes.func,
|
|
prefixCls: PropTypes.string,
|
|
onClick: PropTypes.func,
|
|
// visible: PropTypes.bool, // Only for test. Don't use it.
|
|
});
|