@types/assert
Advanced tools
Comparing version 1.5.3 to 1.5.4
{ | ||
"name": "@types/assert", | ||
"version": "1.5.3", | ||
"version": "1.5.4", | ||
"description": "TypeScript definitions for commonjs-assert", | ||
@@ -39,4 +39,4 @@ "license": "MIT", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "05a35c9aea312ea6b86537a1e846cef067f15d4499ce8985fbec353ba58fdc59", | ||
"typesPublisherContentHash": "4b72c680b4688616b8e5b11c1132172d2c20bbdbcea81f0a445a5aaba5d9d849", | ||
"typeScriptVersion": "3.4" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 12 Jan 2021 17:17:20 GMT | ||
* Last updated: Tue, 19 Jan 2021 23:09:26 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: none |
/** An alias of `assert.ok()`. */ | ||
declare function assert(value: any, message?: string | Error): void; | ||
declare namespace assert { | ||
class AssertionError implements Error { | ||
name: string; | ||
message: string; | ||
class AssertionError extends Error { | ||
actual: any; | ||
@@ -8,0 +6,0 @@ expected: any; |
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
11314
169