@jymfony/exceptions
Advanced tools
Comparing version 0.1.0-alpha.29 to 0.1.0-alpha.30
{ | ||
"name": "@jymfony/exceptions", | ||
"version": "0.1.0-alpha.29", | ||
"version": "0.1.0-alpha.30", | ||
"description": "Jymfony exception (core package)", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -48,14 +48,17 @@ /// <reference lib="es2015" /> | ||
declare module NodeJS { | ||
interface Global { | ||
Exception: Newable<Exception>; | ||
BadMethodCallException: Newable<BadMethodCallException>; | ||
DomainException: Newable<DomainException>; | ||
InvalidArgumentException: Newable<InvalidArgumentException>; | ||
LogicException: Newable<LogicException>; | ||
OutOfBoundsException: Newable<OutOfBoundsException>; | ||
RuntimeException: Newable<RuntimeException>; | ||
UnderflowException: Newable<UnderflowException>; | ||
UnexpectedValueException: Newable<UnexpectedValueException>; | ||
export {}; | ||
declare global { | ||
namespace NodeJS { | ||
interface Global { | ||
Exception: Newable<Exception>; | ||
BadMethodCallException: Newable<BadMethodCallException>; | ||
DomainException: Newable<DomainException>; | ||
InvalidArgumentException: Newable<InvalidArgumentException>; | ||
LogicException: Newable<LogicException>; | ||
OutOfBoundsException: Newable<OutOfBoundsException>; | ||
RuntimeException: Newable<RuntimeException>; | ||
UnderflowException: Newable<UnderflowException>; | ||
UnexpectedValueException: Newable<UnexpectedValueException>; | ||
} | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
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
9015
213