- type TypedArray =
- | Int8Array
- | Uint8Array
- | Int16Array
- | Uint16Array
- | Int32Array
- | Uint32Array
- | Float32Array
- | Float64Array
- | BigInt64Array
- | BigUint64Array;
- declare function typedArrayLength(value: TypedArray): number;
- declare function typedArrayLength(value: unknown): false;
- export = typedArrayLength;
|