10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
|
/**
|
||
|
* Maximum. max(a,b)==a if a>=b. max(a,b)==b if a<=b
|
||
|
*
|
||
|
* @param a
|
||
|
* @param b
|
||
|
*
|
||
|
* @returns Maximum of numbers a and b
|
||
|
*/
|
||
|
export declare function max(a: number | bigint, b: number | bigint): number | bigint;
|
||
|
//# sourceMappingURL=max.d.ts.map
|