DefinitelyTyped/types/gl-vec2/clone.d.ts
2019-03-05 18:32:47 +11:00

7 lines
142 B
TypeScript

/**
* Creates a new vec2 initialized with values from an existing vector
*/
declare function clone(a: number[]): number[];
export = clone;