Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/is-typedarray

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/is-typedarray - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

6

is-typedarray/index.d.ts

@@ -1,7 +0,1 @@

// Type definitions for is-typedarray 1.0
// Project: https://github.com/hughsk/is-typedarray
// Definitions by: BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.1
/// <reference types="node" />

@@ -8,0 +2,0 @@

16

is-typedarray/package.json
{
"name": "@types/is-typedarray",
"version": "1.0.0",
"version": "1.0.1",
"description": "TypeScript definitions for is-typedarray",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/is-typedarray",
"license": "MIT",

@@ -9,11 +10,12 @@ "contributors": [

"name": "BendingBender",
"url": "https://github.com/BendingBender",
"githubUsername": "BendingBender"
"githubUsername": "BendingBender",
"url": "https://github.com/BendingBender"
}
],
"main": "",
"types": "index",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git"
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/is-typedarray"
},

@@ -24,4 +26,4 @@ "scripts": {},

},
"typesPublisherContentHash": "252b530e75d5b654668d86a8eeacbbea12cd24d08891d0ca7d001626aec4a39e",
"typeScriptVersion": "2.1"
"typesPublisherContentHash": "5d5ad274a80607850128c064fce0111aaeb894fc297436e6ac686b835ec000f5",
"typeScriptVersion": "4.5"
}

@@ -8,10 +8,35 @@ # Installation

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/is-typedarray
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/is-typedarray.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/is-typedarray/index.d.ts)
````ts
/// <reference types="node" />
Additional Details
* Last updated: Mon, 17 Dec 2018 23:26:10 GMT
* Dependencies: @types/node
* Global values: none
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: Wed, 18 Oct 2023 01:17:35 GMT
* Dependencies: [@types/node](https://npmjs.com/package/@types/node)
# Credits
These definitions were written by BendingBender <https://github.com/BendingBender>.
These definitions were written by [BendingBender](https://github.com/BendingBender).

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc