Просмотр исходного кода

Fix: Realy correctly label paramiters of new interface.

duncan law 6 лет назад
Родитель
Сommit
f4f5aae690
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      src/Events/pointerEvents.ts

+ 3 - 3
src/Events/pointerEvents.ts

@@ -125,15 +125,15 @@ export interface PointerTouch {
      */
     x: number;
     /**
-     * @param y Y coordinate of touch.
+     * Y coordinate of touch.
      */
     y: number;
     /**
-     * @param pointerId Id of touch. Unique for each finger.
+     * Id of touch. Unique for each finger.
      */
     pointerId: number;
     /**
-     * @param type Event type passed from DOM.
+     * Event type passed from DOM.
      */
     type: any;
 }