UNPKG

@loaders.gl/schema

Version:

Table format APIs for JSON, CSV, etc...

46 lines (37 loc) 1.07 kB
// loaders.gl // SPDX-License-Identifier: MIT // Copyright (c) vis.gl contributors /** Any typed array */ export type TypedArray = | Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array; export type BigTypedArray = TypedArray | BigInt64Array | BigUint64Array; export type TypedArrayConstructor = | Int8ArrayConstructor | Uint8ArrayConstructor | Int16ArrayConstructor | Uint16ArrayConstructor | Int32ArrayConstructor | Uint32ArrayConstructor | Float32ArrayConstructor | Float64ArrayConstructor; export type BigTypedArrayConstructor = | TypedArrayConstructor | BigInt64ArrayConstructor | BigUint64ArrayConstructor; /** Any numeric array: typed array or `number[]` */ export type NumberArray = number[] | TypedArray; export type NumericArray = number[] | TypedArray; export interface ArrayType<T = unknown> { readonly length: number; [n: number]: T; } /** Any array: typed array or js array (`any[]`) */ export type AnyArray = any[] | TypedArray;