Files
DefinitelyTyped/types/gl-vec4/squaredLength.d.ts
T

7 lines
136 B
TypeScript

/**
* Calculates the squared length of a vec4.
*/
declare function squaredLength(a: number[]): number;
export default squaredLength;