You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
686 B
22 lines
686 B
/// <reference types="react" />
|
|
import React from 'react';
|
|
import { ITouchProps, ITouchState } from './PropTypes';
|
|
export default class TouchFeedback extends React.Component<ITouchProps, ITouchState> {
|
|
static defaultProps: {
|
|
disabled: boolean;
|
|
};
|
|
state: {
|
|
active: boolean;
|
|
};
|
|
componentDidUpdate(): void;
|
|
triggerEvent(type: any, isActive: any, ev: any): void;
|
|
onTouchStart: (e: any) => void;
|
|
onTouchMove: (e: any) => void;
|
|
onTouchEnd: (e: any) => void;
|
|
onTouchCancel: (e: any) => void;
|
|
onMouseDown: (e: any) => void;
|
|
onMouseUp: (e: any) => void;
|
|
onMouseLeave: (e: any) => void;
|
|
render(): React.ReactElement<any>;
|
|
}
|