UNPKG

locutus

Version:

Locutus other languages' standard libraries to JavaScript for fun and educational purposes

8 lines (7 loc) 279 B
type PhpMinMaxScalar = string | number | boolean | null; type PhpMinMaxObject = { [key: string]: PhpMinMaxValue; }; type PhpMinMaxValue = PhpMinMaxScalar | PhpMinMaxValue[] | PhpMinMaxObject; export declare function max(...args: PhpMinMaxValue[]): PhpMinMaxValue; export {};