export enum TouchEvents {
    Start = "touchstart",
    End = "touchend",
    Move = "touchmove",
    Cancel = "touchcancel",
}
