mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 21:50:07 +08:00
10 lines
306 B
TypeScript
10 lines
306 B
TypeScript
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.looseBool, // Only for test. Don't use it.
|
|
});
|