UNPKG

@godspeedsystems/core

Version:

> 4th Generation Declarative Microservice Framework

7 lines (6 loc) 269 B
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; }