package js.lib; typedef Int32ArrayConstructor = { final prototype : js.lib.Int32Array; /** The size in bytes of each element in the array. **/ final BYTES_PER_ELEMENT : Float; /** Returns a new array from a set of elements. **/ function of(items:haxe.extern.Rest):js.lib.Int32Array; /** Creates an array from an array-like or iterable object. Creates an array from an array-like or iterable object. Creates an array from an array-like or iterable object. **/ @:overload(function(arrayLike:ArrayLike, mapfn:(v:T, k:Float) -> Float, ?thisArg:Dynamic):js.lib.Int32Array { }) @:overload(function(arrayLike:Iterable, ?mapfn:(v:Float, k:Float) -> Float, ?thisArg:Dynamic):js.lib.Int32Array { }) function from(arrayLike:ArrayLike):js.lib.Int32Array; };