mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-22 08:42:51 +00:00
7 lines
151 B
TypeScript
7 lines
151 B
TypeScript
/**
|
|
* Returns the inverse of the components of a number.
|
|
*/
|
|
declare function inverse(out: number[], a: number[]): number[];
|
|
|
|
export default inverse;
|