From bb451024c3e750bd769a2f55c9655d7f021ac77d Mon Sep 17 00:00:00 2001 From: FishOrBear Date: Tue, 26 Sep 2017 07:50:24 +0800 Subject: [PATCH] Clean code (#19818) --- types/three/three-core.d.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/types/three/three-core.d.ts b/types/three/three-core.d.ts index 1ef699622b..ae9e134c21 100644 --- a/types/three/three-core.d.ts +++ b/types/three/three-core.d.ts @@ -4820,8 +4820,7 @@ export class LineSegments extends Line { } export class Mesh extends Object3D { - constructor(geometry?: Geometry, material?: Material | Material []); - constructor(geometry?: BufferGeometry, material?: Material | Material []); + constructor(geometry?: Geometry | BufferGeometry, material?: Material | Material []); geometry: Geometry|BufferGeometry; material: Material | Material[];