js.lib

..
intl
webassembly
ArrayBuffer

ArrayBufferView

ArrayBufferView is a helper type representing any of the following JavaScript TypedArray types:

AsyncIterator

Native JavaScript async iterator structure.

BufferSource

BufferSource is a typedef used to represent objects that are either themselves an ArrayBuffer, or which are a TypedArray providing an ArrayBufferView.

DataView

Date

Creates a JavaScript Date instance that represents a single moment in time. Date objects are based on a time value that is the number of milliseconds since 1 January 1970 UTC.

Error

EvalError

Float32Array

The Float32Array typed array represents an array of 32-bit floating point numbers (corresponding to the C float data type) in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation)

Float64Array

The Float64Array typed array represents an array of 64-bit floating point numbers (corresponding to the C double data type) in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).

Function

Int16Array

The Int16Array typed array represents an array of twos-complement 16-bit signed integers in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).

Int32Array

The Int32Array typed array represents an array of twos-complement 32-bit signed integers in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).

Int8Array

The Int8Array typed array represents an array of twos-complement 8-bit signed integers. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).

Iterator

Native JavaScript iterator structure. To enable haxe for-in iteration, use js.lib.HaxeIterator, for example for (v in new js.lib.HaxeIterator(jsIterator)) or add using js.lib.HaxeIterator; to your module

IteratorStep

KeyValue

Key/value access helper.

Object

The js.lib.Object constructor creates an object wrapper.

ObjectEntry

Key/value access helper for js.lib.Object.entries().

ObjectPropertyDescriptor

See also:

ObjectPrototype

Type for

Promise

The Promise object represents the eventual completion (or failure) of an asynchronous operation and its resulting value.

PromiseHandler

Handler type for the Promise object.

PromiseSettleOutcome

PromiseSettleStatus

RangeError

ReferenceError

RegExp

Native JavaScript regular expressions.

RegExpMatch

A return value of the RegExp.exec method.

Symbol

SyntaxError

Thenable

A value with a then method.

ThenableStruct

TypeError

URIError

Uint16Array

The Uint16Array typed array represents an array of 16-bit unsigned integers in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).

Uint32Array

The Uint32Array typed array represents an array of 32-bit unsigned integers in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).

Uint8Array

The Uint8Array typed array represents an array of 8-bit unsigned integers. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).

Uint8ClampedArray

The Uint8ClampedArray typed array represents an array of 8-bit unsigned integers clamped to 0-255; if you specified a value that is out of the range of [0,255], 0 or 255 will be set instead; if you specify a non-integer, the nearest integer will be set. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).