export function touchMoveEventName()

in src/touch/touch.ts [38:47]


export function touchMoveEventName(): string {
    let eventName: string = "touchmove";

    if (window["PointerEvent"]) {
        // IE11
        eventName = "pointermove";
    }

    return eventName;
}