mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-30 13:37:35 +00:00
7 lines
136 B
TypeScript
7 lines
136 B
TypeScript
/**
|
|
* Copy the values from one vec4 to another.
|
|
*/
|
|
declare function copy(out: number[], a: number[]): number[];
|
|
|
|
export default copy;
|