UNPKG

universal-ledger-agent

Version:

The universal ledger agent framework, supporting plugins for message communication

13 lines (12 loc) 320 B
export declare class EventHandler { private plugins; private enabledPlugins; constructor(plugins: any[]); /** * Broadcasts a message (jsonObject) to all enabled plugins * * @param jsonObject * @param callback */ processMsg(jsonObject: any, callback: any): Promise<void[]>; }