UNPKG

184 BTypeScriptView Raw
1export interface ITouchProps {
2 disabled?: boolean;
3 activeClassName?: string;
4 activeStyle?: any;
5 children?: any;
6}
7export interface ITouchState {
8 active: boolean;
9}