mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-12 20:02:49 +00:00
7 lines
163 B
TypeScript
7 lines
163 B
TypeScript
/**
|
|
* Calculates the euclidian distance between two number's. Aliased as dist.
|
|
*/
|
|
declare function dist(a: number[], b: number[]): number;
|
|
|
|
export default dist;
|