Skip to content

Prelude

Types

any

type any = {}

bufferSource

type bufferSource = any

domException

An abnormal event (called an exception) which occurs as a result of calling a method or accessing a property of a web API. See DOMException on MDN

type domException = {name: string, message: string}

Record fields

name
string
message
string

domStringList

A type returned by some APIs which contains a list of DOMString (strings). See DOMStringList on MDN

type domStringList = {length: int}

Record fields

length
int

Returns the number of strings in strings. Read more on MDN

float64Array

type float64Array = any

sharedArrayBuffer

type sharedArrayBuffer = any

Values

unsafeConversation

let unsafeConversation: 'tinput => 'toutput