UNPKG
@nexex/types
Version:
latest (0.10.0)
0.10.0
0.3.0
0.2.7
0.2.6
0.2.5
0.2.4
0.2.3
0.2.1
0.2.0
github.com/NexexBuilder/nexex-mono/tree/master/packages/types
NexexBuilder/nexex-mono
@nexex/types
/
errors
/
BaseError.d.ts
9 lines
(8 loc)
•
223 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
declare
abstract
class
BaseError
extends
Error
{
stack
:
string
;
message
:
string
;
abstract
name
:
string
;
origin
:
Error
;
__proto__
:
any
;
protected
constructor
(
msg
:
string
,
throwable
?:
Error
); }