| 1 | import * as React from "react"; |
| 2 | export declare namespace ReactToolbox { |
| 3 | interface Props { |
| 4 | /** |
| 5 | * Set a class for the root component. |
| 6 | */ |
| 7 | className?: string; |
| 8 | /** |
| 9 | * Key used to uniquely identify the element within an Array. |
| 10 | */ |
| 11 | key?: string | number; |
| 12 | /** |
| 13 | * Callback called when the component is clicked. |
| 14 | */ |
| 15 | onClick?: Function; |
| 16 | /** |
| 17 | * Fires after the mouse is released from the Component. |
| 18 | */ |
| 19 | onMouseUp?: Function; |
| 20 | /** |
| 21 | * Callback called when the mouse enters the Component. |
| 22 | */ |
| 23 | onMouseEnter?: Function; |
| 24 | /** |
| 25 | * Callback called when the mouse leaves the Component. |
| 26 | */ |
| 27 | onMouseLeave?: Function; |
| 28 | /** |
| 29 | * Callback called when the mouse press the Component. |
| 30 | */ |
| 31 | onMouseDown?: Function; |
| 32 | onContextMenu?: Function; |
| 33 | onDoubleClick?: Function; |
| 34 | onDrag?: Function; |
| 35 | onDragEnd?: Function; |
| 36 | onDragEnter?: Function; |
| 37 | onDragExit?: Function; |
| 38 | onDragLeave?: Function; |
| 39 | onDragOver?: Function; |
| 40 | onDragStart?: Function; |
| 41 | onDrop?: Function; |
| 42 | onMouseMove?: Function; |
| 43 | onMouseOut?: Function; |
| 44 | onMouseOver?: Function; |
| 45 | onTouchCancel?: Function; |
| 46 | onTouchEnd?: Function; |
| 47 | onTouchMove?: Function; |
| 48 | onTouchStart?: Function; |
| 49 | /** |
| 50 | * Set inline style for the root component. |
| 51 | */ |
| 52 | style?: React.CSSProperties; |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | export default ReactToolbox; |
nothing calls this directly
no outgoing calls
no test coverage detected