Action
    Preparing search index...

    Type Alias TypedArrayCreateParam<T>

    TypedArrayCreateParam: T extends Byte
        ? Uint8Array
        : T extends UInt16
            ? Uint16Array
            : T extends UInt32
                ? Uint32Array
                : T extends UInt64
                    ? BigUint64Array
                    : T extends Int16
                        ? Int16Array
                        : T extends Int32
                            ? Int32Array
                            : T extends Int64
                                ? BigInt64Array
                                : T extends Single
                                    ? Float32Array
                                    : T extends Double ? Float64Array : (...)[]

    Type Parameters

    • T