blob: b2f48c69bd15c8573b6a04d8c7b96ec834b767be [file] [log] [blame]
type TypedArray =
| Int8Array
| Uint8Array
| Uint8ClampedArray
| Int16Array
| Uint16Array
| Int32Array
| Uint32Array
| Float32Array
| Float64Array
| BigInt64Array
| BigUint64Array;
declare function isTypedArray(value: unknown): value is TypedArray;
export = isTypedArray;