mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-11 19:32:43 +00:00
7 lines
149 B
TypeScript
7 lines
149 B
TypeScript
/**
|
|
* Subtracts vector b from vector a. Aliased as sub.
|
|
*/
|
|
declare function sub(out: number[], a: number[], b: number[]): number[];
|
|
|
|
export = sub;
|