mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-15 13:22:46 +00:00
7 lines
182 B
TypeScript
7 lines
182 B
TypeScript
/**
|
|
* Calculates the squared euclidian distance between two number's. Aliased as sqrDist.
|
|
*/
|
|
declare function sqrDist(a: number[], b: number[]): number[];
|
|
|
|
export default sqrDist;
|