From 148c290321edf8d224a52e9f12dfec5d06189fad Mon Sep 17 00:00:00 2001 From: Chance Snow Date: Thu, 22 Oct 2015 15:00:33 -0700 Subject: [PATCH] Fix clone method type annotations --- threejs/three.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/threejs/three.d.ts b/threejs/three.d.ts index 47d44c589..008026578 100644 --- a/threejs/three.d.ts +++ b/threejs/three.d.ts @@ -4131,7 +4131,7 @@ declare module THREE { material: Material; // LineDashedMaterial or LineBasicMaterial or ShaderMaterial raycast(raycaster: Raycaster, intersects: any): void; - clone(object?: Line): Line; + clone(object?: LineSegments): LineSegments; } enum LineMode{}