Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ArrayBufferViewConstructor

import { ArrayBufferViewConstructor } from "https://raw.githubusercontent.com/i-xi-dev/bytes.es/4.4.2/deps.ts";

The type of the ArrayBufferView constructor.

type ArrayBufferViewConstructor<T extends ArrayBufferView> = {
new (
a: ArrayBuffer,
b?: number,
c?: number,
): T;
}
;

§Type Parameters

§
T extends ArrayBufferView
[src]

§Type

§
{
new (
a: ArrayBuffer,
b?: number,
c?: number,
): T;
}
[src]

§Functions

ArrayBufferViewConstructor.isArrayBufferViewConstructor
ArrayBufferViewConstructor.isDataViewConstructor
ArrayBufferViewConstructor.isTypedArrayConstructor

§Type Aliases

ArrayBufferViewConstructor.TypedArrayConstructor

The type of the TypedArray constructor.