| 14 | }; |
| 15 | } |
| 16 | export interface Event { |
| 17 | /** |
| 18 | * 代表事件的类型。 |
| 19 | */ |
| 20 | type: string; |
| 21 | /** |
| 22 | * 页面打开到触发事件所经过的毫秒数。 |
| 23 | */ |
| 24 | timeStamp: number; |
| 25 | /** |
| 26 | * 触发事件的源组件。 |
| 27 | */ |
| 28 | target: Target; |
| 29 | /** |
| 30 | * 事件绑定的当前组件。 |
| 31 | */ |
| 32 | currentTarget: Target; |
| 33 | /** |
| 34 | * 额外的信息 |
| 35 | */ |
| 36 | detail: any; |
| 37 | } |
| 38 | interface Touch { |
| 39 | /** |
| 40 | * 触摸点的标识符 |
nothing calls this directly
no outgoing calls
no test coverage detected