mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-26 10:42:51 +00:00
7 lines
132 B
TypeScript
7 lines
132 B
TypeScript
/**
|
|
* Negates the components of a vec4.
|
|
*/
|
|
declare function negate(out: number[], a: number[]): number[];
|
|
|
|
export default negate;
|