Browse Source

TS: Clean up WebGLProperties.

linbingquan 5 years ago
parent
commit
5744a3ddca
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();
 	constructor();
 
 
 	get( object: any ): any;
 	get( object: any ): any;
-	delete( object: any ): void;
-	clear(): void;
+	remove( object: any ): void;
+	update( object: any, key: any, value: any ): any;
+	dispose(): void;
 
 
 }
 }