@types/is-typedarray
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

Installation

npm install --save @types/is-typedarray

Summary

This package contains type definitions for is-typedarray (https://github.com/hughsk/is-typedarray).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/is-typedarray.

index.d.ts

/// <reference types="node" />

export = isTypedArray;

declare function isTypedArray(candidate: any): candidate is isTypedArray.TypedArray;

declare namespace isTypedArray {
    function strict(candidate: any): candidate is TypedArray;
    function loose(candidate: any): candidate is TypedArray;

    type TypedArray =
        | Int8Array
        | Int16Array
        | Int32Array
        | Uint8Array
        | Uint8ClampedArray
        | Uint16Array
        | Uint32Array
        | Float32Array
        | Float64Array
        | Buffer;
}

Additional Details

  • Last updated: Tue, 07 Nov 2023 03:09:37 GMT
  • Dependencies: @types/node

Credits

These definitions were written by BendingBender.

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.0.215,595ts5.8
1.0.215,595ts5.7
1.0.215,595latest
1.0.215,595ts4.5
1.0.215,595ts4.6
1.0.215,595ts4.7
1.0.215,595ts4.8
1.0.215,595ts4.9
1.0.215,595ts5.0
1.0.215,595ts5.1
1.0.215,595ts5.2
1.0.215,595ts5.3
1.0.215,595ts5.4
1.0.215,595ts5.5
1.0.215,595ts5.6
1.0.215,595ts5.9
1.0.01,657ts2.1
1.0.01,657ts2.2
1.0.01,657ts2.3
1.0.01,657ts2.4
1.0.01,657ts2.5
1.0.01,657ts2.6
1.0.01,657ts2.7
1.0.01,657ts2.8
1.0.01,657ts2.9
1.0.01,657ts3.0
1.0.01,657ts3.1
1.0.01,657ts3.2
1.0.01,657ts3.3
1.0.01,657ts3.4
1.0.01,657ts3.5
1.0.01,657ts3.6
1.0.01,657ts3.7
1.0.01,657ts3.8
1.0.01,657ts3.9
1.0.01,657ts4.0
1.0.01,657ts4.1
1.0.01,657ts4.2
1.0.01,657ts4.3
1.0.01,657ts4.4

Version History

VersionDownloads (Last 7 Days)Published
1.0.215,595
1.0.10
1.0.01,657

Package Sidebar

Install

npm i @types/is-typedarray

Weekly Downloads

17,252

Version

1.0.2

License

MIT

Unpacked Size

3.75 kB

Total Files

5

Last publish

Collaborators

  • types