/** * fix active style * on Uc browser, css :active not work normal */ import * as React from 'react'; export default function touchableFeedBack(ComposedComponent: any): React.ClassicComponentClass<{ onTouchStart?: Function; onTouchEnd?: Function; onTouchCancel?: Function; onMouseDown?: Function; onMouseUp?: Function; }>;