Input
type Input = string | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array
A union of all of the types that can be provided as input to a parser.
These are each converted by parse
or run
into a DataView
, which is then inserted into a Context
.