level-errors
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -6,8 +6,11 @@ interface LevelUPError extends Error { } | ||
interface WriteError extends LevelUPError { } | ||
interface NotFoundError extends Error { } | ||
interface NotFoundError extends Error { | ||
notFound: any; | ||
status: any; | ||
} | ||
interface EncodingError extends LevelUPError { } | ||
interface LevelUPErrorConstructor<TError> { | ||
new(message?: string): TError; | ||
(message?: string): TError; | ||
new(message?: string, cause?: any): TError; | ||
(message?: string, cause?: any): TError; | ||
readonly prototype: TError; | ||
@@ -14,0 +17,0 @@ } |
{ | ||
"name": "level-errors", | ||
"description": "Error types for LevelUP", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"contributors": [ | ||
@@ -6,0 +6,0 @@ "Rod Vagg <r@va.gg> (https://github.com/rvagg)", |
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
7200
59