diff --git a/types/three/src/math/Color.d.ts b/types/three/src/math/Color.d.ts index d31daa4a1..1dc434cfe 100644 --- a/types/three/src/math/Color.d.ts +++ b/types/three/src/math/Color.d.ts @@ -204,8 +204,7 @@ export class Color { */ b: number; - set(r: number, g: number, b: number): this; - set(color: ColorRepresentation): this; + set(...args: [color: ColorRepresentation] | [r: number, g: number, b: number]): this; /** * Sets this color's {@link r}, {@link g} and {@link b} components from the x, y, and z components of the specified