@types/is-typedarray
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -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 @@ |
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
3748
0
42
18