| 71 | *Typescript interface: ITimer represents a time-recording object. |
| 72 | */ |
| 73 | export interface ITimer { |
| 74 | prev: number; |
| 75 | diff: number; |
| 76 | end: number; |
| 77 | min: number; |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Typescript type: TouchPointsKey represents a set of acceptable string keys for defining touch action. |
nothing calls this directly
no outgoing calls
no test coverage detected