Browse Source

Merge pull request #17655 from linbingquan/dev-ts

TS: Clean up WebGLProperties.
Michael Herzog 5 years ago
parent
commit
46babfc0e6
1 changed files with 3 additions and 2 deletions
  1. 3 2
      src/renderers/webgl/WebGLProperties.d.ts

+ 3 - 2
src/renderers/webgl/WebGLProperties.d.ts

@@ -3,7 +3,8 @@ export class WebGLProperties {
 	constructor();
 
 	get( object: any ): any;
-	delete( object: any ): void;
-	clear(): void;
+	remove( object: any ): void;
+	update( object: any, key: any, value: any ): any;
+	dispose(): void;
 
 }