mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
7 lines
135 B
TypeScript
7 lines
135 B
TypeScript
/**
|
|
* Divides two vec2's. Aliased as div.
|
|
*/
|
|
declare function div(out: number[], a: number[], b: number[]): number[];
|
|
|
|
export = div;
|