ml-spectra-processing
    Preparing search index...

    Type Alias NumberArrayType<ArrayConstructorType>

    NumberArrayType: ArrayConstructorType extends Float64ArrayConstructor
        ? Float64Array
        : ArrayConstructorType extends Float32ArrayConstructor
            ? Float32Array
            : ArrayConstructorType extends Int32ArrayConstructor
                ? Int32Array
                : ArrayConstructorType extends Int16ArrayConstructor
                    ? Int16Array
                    : ArrayConstructorType extends Int8ArrayConstructor
                        ? Int8Array
                        : ArrayConstructorType extends Uint32ArrayConstructor
                            ? Uint32Array
                            : ArrayConstructorType extends Uint16ArrayConstructor
                                ? Uint16Array
                                : ArrayConstructorType extends Uint8ArrayConstructor
                                    ? Uint8Array
                                    : ArrayConstructorType extends Uint8ClampedArrayConstructor
                                        ? Uint8ClampedArray
                                        : number[]

    Type Parameters