Vec3的div函数参数有误

在creator.d.ts文件中,Vec3函数div的第一个参数是个Vec3,这里应该是个number吧。
/**
!#en Divides by a number. If you want to save result to another vector, use div() instead.
!#zh 向量除法。如果你想结果保存到另一个向量,可使用 div() 代替。
@param divisor divisor
/
divSelf(divisor: number): Vec3;
/
*
!#en Divides by a number, and returns the new result.
!#zh 向量除法,并返回新的结果。
@param vector vector
@param out optional, the receiving vector, you can pass the same vec3 to save result to itself, if not provided, a new vec3 will be created
*/
div(vector: Vec3, out?: Vec3): Vec3;

我反馈一下,感谢支持!