Files

7 lines
148 B
TypeScript

/**
* Creates a new vec2 initialized with the given values.
*/
declare function fromValues(x: number, y: number): number[];
export = fromValues;