DefinitelyTyped/types/gl-vec2/equals.d.ts
2019-03-05 18:32:47 +11:00

7 lines
183 B
TypeScript

/**
* Returns whether or not the vectors have approximately the same elements in the same position.
*/
declare function equals(a: number[], b: number[]): boolean;
export = equals;