//FIXME: need to find documentation on which component is a TTouchable and can implement that interface

See

React.DOMAttributes

interface Touchable {
    onTouchCancel?: ((event) => void);
    onTouchEnd?: ((event) => void);
    onTouchEndCapture?: ((event) => void);
    onTouchMove?: ((event) => void);
    onTouchStart?: ((event) => void);
}

Hierarchy (view full)

Properties

onTouchCancel?: ((event) => void)

Type declaration

onTouchEnd?: ((event) => void)

Type declaration

onTouchEndCapture?: ((event) => void)

Type declaration

onTouchMove?: ((event) => void)

Type declaration

onTouchStart?: ((event) => void)

Type declaration