UNPKG

typed-array-buffer

Version:

Get the ArrayBuffer out of a TypedArray, robustly.

10 lines (6 loc) 227 B
import type { TypedArray } from 'is-typed-array'; declare namespace typedArrayBuffer{ export type { TypedArray }; } declare function typedArrayBuffer(x: typedArrayBuffer.TypedArray): ArrayBuffer; export = typedArrayBuffer;