session-desktop/ts/session/index.ts
Audric Ackermann cfb9e65f30
trigger new ratchet send on message sent success
send our new ratchet to all new members when we just sent a message
containing no senderKey in it.

an set but empty senderKey array should only be sent when a user left or
was removed.
2020-10-02 14:27:46 +10:00

12 lines
386 B
TypeScript

import * as Messages from './messages';
import * as Protocols from './protocols';
import * as Types from './types';
import * as Utils from './utils';
import * as Sending from './sending';
import * as Constants from './constants';
import * as MediumGroup from './medium_group';
export * from './instance';
export { Messages, Utils, Protocols, Types, Sending, Constants, MediumGroup };