which-typed-array
Advanced tools
Comparing version 1.1.17 to 1.1.18
@@ -8,2 +8,9 @@ # Changelog | ||
## [v1.1.18](https://github.com/inspect-js/which-typed-array/compare/v1.1.17...v1.1.18) - 2024-12-18 | ||
### Commits | ||
- [types] improve types [`4b57173`](https://github.com/inspect-js/which-typed-array/commit/4b5717349976578c6b48966d581687df5dcc2e9b) | ||
- [Dev Deps] update `@types/tape` [`81853b0`](https://github.com/inspect-js/which-typed-array/commit/81853b075c018538859a5533578be654fafecdae) | ||
## [v1.1.17](https://github.com/inspect-js/which-typed-array/compare/v1.1.16...v1.1.17) - 2024-12-18 | ||
@@ -10,0 +17,0 @@ |
@@ -1,3 +0,1 @@ | ||
import type { TypedArray } from 'is-typed-array'; | ||
/** | ||
@@ -37,3 +35,14 @@ * Determines the type of the given collection, or returns false. | ||
export type { TypedArray }; | ||
export type TypedArray = | ||
| Int8Array | ||
| Uint8Array | ||
| Uint8ClampedArray | ||
| Int16Array | ||
| Uint16Array | ||
| Int32Array | ||
| Uint32Array | ||
| Float32Array | ||
| Float64Array | ||
| BigInt64Array | ||
| BigUint64Array; | ||
@@ -40,0 +49,0 @@ export type TypedArrayConstructor = |
{ | ||
"name": "which-typed-array", | ||
"version": "1.1.17", | ||
"version": "1.1.18", | ||
"author": { | ||
@@ -80,3 +80,3 @@ "name": "Jordan Harband", | ||
"@types/make-generator-function": "^2.0.3", | ||
"@types/tape": "^5.7.0", | ||
"@types/tape": "^5.8.0", | ||
"auto-changelog": "^2.5.0", | ||
@@ -83,0 +83,0 @@ "encoding": "^0.1.13", |
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
43024
267