Fix three.js Vector3 typing

This commit is contained in:
Guido Zuidhof
2014-11-21 02:17:57 +01:00
parent 7a31100a5a
commit 1e06608513
+2 -2
View File
@@ -3674,7 +3674,7 @@ declare module THREE {
/**
* Adds v to this vector.
*/
add(a: Object): Vector3;
add(a: Vector): Vector3;
addScalar(s: number): Vector3;
/**
@@ -5759,4 +5759,4 @@ declare module THREE {
declare module 'three' {
export=THREE;
}
}