@types/array.prototype.every
Advanced tools
Comparing version 1.1.0 to 1.1.1
interface ReadonlyArray<T> { | ||
every<T>(this: T[], callbackfn: (value: T, index?: number, array?: T[]) => boolean, thisArg?: unknown): boolean; | ||
every<T>( | ||
this: T[] | IArguments, | ||
callbackfn: (value: T, index?: number, array?: T[]) => boolean, | ||
thisArg?: unknown, | ||
): boolean; | ||
} |
declare function every<T>( | ||
this: T[], | ||
this: T[] | IArguments, | ||
callbackfn: (value: T, index?: number, array?: T[]) => boolean, | ||
@@ -4,0 +4,0 @@ thisArg?: unknown, |
@@ -6,3 +6,7 @@ import implementation = require("./implementation"); | ||
interface Every { | ||
<T>(array: T[], callbackfn: (value: T, index: number, array: T[]) => boolean, thisArg?: unknown): boolean; | ||
<T>( | ||
array: T[] | IArguments, | ||
callbackfn: (value: T, index: number, array: T[]) => boolean, | ||
thisArg?: unknown, | ||
): boolean; | ||
getPolyfill(): Implementation; | ||
@@ -9,0 +13,0 @@ implementation: Implementation; |
{ | ||
"name": "@types/array.prototype.every", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "TypeScript definitions for array.prototype.every", | ||
@@ -23,4 +23,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/array.prototype.every", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "d105ce179b0118b9fc2f3f4b14417c9e7f9527b2cc8a939459fcfc7853e595e7", | ||
"typesPublisherContentHash": "84e27b81c35b91081861e266b8ca38c75dda03437f412b1a107f2db44d2f6146", | ||
"typeScriptVersion": "4.6" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Sat, 20 Jan 2024 22:06:43 GMT | ||
* Last updated: Sun, 28 Jan 2024 16:07:07 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ |
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
3544
33