mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-18 06:42:52 +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;
|