UNPKG
@godspeedsystems/core
Version:
latest (2.5.9)
2.5.9
2.5.8
2.5.7
2.5.6
2.5.5
2.5.4
2.5.3
2.5.2
2.5.1
2.5.0
2.4.8
2.4.7
2.4.6
2.4.5
2.4.4
2.4.3
2.4.2
2.4.1
2.4.0
2.3.2
2.3.1
2.3.0
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.0
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.3-with.tracing-2
2.0.3-with.tracing
2.0.2
2.0.1
2.0.0-pre-alpha
2.0.0-beta.3
2.0.0-beta.2
2.0.0-alpha.23
2.0.0-alpha.22
2.0.0-alpha.21
2.0.0-alpha.2
2.0.0-alpha.1
2.0.0-alpha
> 4th Generation Declarative Microservice Framework
@godspeedsystems/core
/
dist
/
types.d.ts
7 lines
(6 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
type
CHANNEL_TYPE
=
'messagebus'
|
'REST'
|
'gRpc'
|
'socket'
|
'cron'
;
export
type
ACTOR_TYPE
=
'user'
|
'service'
;
export
type
EVENT_TYPE
=
'INFO'
|
'DEBUG'
|
'WARN'
|
'ERROR'
|
'TRACE'
|
'FATAL'
;
export
interface
PlainObject
{ [
key
:
string
]:
any
; }