Browse Source

fix UniformsUtils.d.ts

Jiulong Hu 6 years ago
parent
commit
bc33b39c53
1 changed files with 7 additions and 2 deletions
  1. 7 2
      src/renderers/shaders/UniformsUtils.d.ts

+ 7 - 2
src/renderers/shaders/UniformsUtils.d.ts

@@ -1,4 +1,9 @@
+export function cloneUniforms( uniforms_src: any ): any;
+export function mergeUniforms( uniforms: any[] ): any;
+
 export namespace UniformsUtils {
-	export function merge( uniforms: any[] ): any;
-	export function clone( uniforms_src: any ): any;
+	export {
+		mergeUniforms as merge,
+		cloneUniforms as clone,
+	}
 }