UNPKG

starling-framework

Version:

A fast, productive library for 2D cross-platform development.

25 lines (20 loc) 616 B
declare namespace starling.utils { /** * A Collection of largest/smallest representable numbers. */ export class Max { /** The largest representable number. */ public static MAX_VALUE:number; /** The smallest representable number. */ public static MIN_VALUE:number; /** The largest representable 32-bit signed integer. */ public static INT_MAX_VALUE:number; /** The smallest representable 32-bit signed integer. */ public static INT_MIN_VALUE:number; /** he largest representable 32-bit unsigned integer. */ public static UINT_MAX_VALUE:number; } } export default starling.utils.Max;