export interface IMoreWrapProps { /** dom元素内容 */ children?: any; /** 自定义类名 */ className?: string; /** 更多的文案, 默认值为['收起', '更多'] */ actionText?: string[]; /** 最大高度,展示内容高度超过这个高度会展示<更多>操作 */ maxHeight?: number | 'auto'; /** <更多>按钮展示的位置,可以选择右上角或者底部居中,默认right,展示在右上角 */ actionPositon?: 'right' | 'center'; /** 自定义样式 */ style?: any; }