瀏覽代碼

event type

Raanan Weber 4 年之前
父節點
當前提交
3d2d298b5a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/LibDeclarations/webxr.d.ts

+ 1 - 1
src/LibDeclarations/webxr.d.ts

@@ -37,7 +37,7 @@ type XRFrameRequestCallback = (time: DOMHighResTimeStamp, frame: XRFrame) => voi
 type XRPlaneSet = Set<XRPlane>;
 type XRAnchorSet = Set<XRAnchor>;
 
-type XREventHandler<T> = (callback: T) => void;
+type XREventHandler<T extends Event> = (callback: T) => void;
 
 interface XRSpace extends EventTarget {}