mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-18 23:02:43 +00:00
7 lines
142 B
TypeScript
7 lines
142 B
TypeScript
/**
|
|
* Returns the minimum of two number's.
|
|
*/
|
|
declare function min(out: number[], a: number[], b: number[]): number[];
|
|
|
|
export default min;
|