mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-08 09:52:51 +00:00
7 lines
155 B
TypeScript
7 lines
155 B
TypeScript
/**
|
|
* Subtracts vector b from vector a. Aliased as sub.
|
|
*/
|
|
declare function sub(out: number[], a: number[], b: number[]): number[];
|
|
|
|
export default sub;
|