Sfoglia il codice sorgente

Fix: Realy correctly label paramiters of new interface.

duncan law 6 anni fa
parent
commit
f4f5aae690
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. 3 3
      src/Events/pointerEvents.ts

+ 3 - 3
src/Events/pointerEvents.ts

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