From fa7edccac867cee4a397160e164e1bfae2f3b90f Mon Sep 17 00:00:00 2001 From: Ari Lotter Date: Wed, 5 Dec 2018 11:36:51 -0500 Subject: [PATCH] [three] Euler.onChange returns the Euler instance. As per https://github.com/mrdoob/three.js/blob/1675680a7763a16010bf1254a8576e5c1b149b55/src/math/Euler.js#L339-L345 --- types/three/three-core.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/three/three-core.d.ts b/types/three/three-core.d.ts index 955eb45faf..003c6a70f6 100755 --- a/types/three/three-core.d.ts +++ b/types/three/three-core.d.ts @@ -3562,7 +3562,7 @@ export class Euler { fromArray(xyzo: any[]): Euler; toArray(array?: number[], offset?: number): number[]; toVector3(optionalResult?: Vector3): Vector3; - onChange(callback: Function): void; + onChange(callback: Function): this; static RotationOrders: string[]; static DefaultOrder: string;