import { Message, ALL_ACTIONS } from '../constants'; import { JifMessage, DeepstreamServices } from '@deepstream/types'; type JifInMessage = any; export default class JIFHandler { private services; private JIF_TO_MSG; private MSG_TO_JIF; private topicToKey; constructor(services: DeepstreamServices); fromJIF(jifMessage: JifInMessage): any; toJIF(message: Message): JifMessage; errorToJIF(message: Message, event: ALL_ACTIONS | string): { message: any; done: boolean; }; } export {};