소스 검색

Fix: Realy correctly label paramiters of new interface.

duncan law 6 년 전
부모
커밋
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;
 }