Browse Source

Fix imports for WebGLRenderer.d.ts

Missing imports for Geometry and BufferGeometry causes issues in typescript projects.
William Dalton 6 years ago
parent
commit
8837ce97a7
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/renderers/WebGLRenderer.d.ts

+ 2 - 0
src/renderers/WebGLRenderer.d.ts

@@ -17,6 +17,8 @@ import { Fog } from './../scenes/Fog';
 import { ToneMapping, ShadowMapType, CullFace } from '../constants';
 import { WebVRManager } from '../renderers/webvr/WebVRManager';
 import { RenderTarget } from './webgl/WebGLRenderLists';
+import { Geometry } from './core/Geometry';
+import { BufferGeometry } from './core/BufferGeometry';
 
 export interface Renderer {
 	domElement: HTMLCanvasElement;