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.
 | 
						|
});
 |