iceshrimp/src/web/app/common/scripts/streaming/messaging-index-stream.ts

13 lines
200 B
TypeScript
Raw Normal View History

2017-11-14 00:54:16 +09:00
import Stream from './stream';
/**
* Messaging index stream connection
*/
2017-11-17 01:24:44 +09:00
export default class Connection extends Stream {
2017-11-14 00:54:16 +09:00
constructor(me) {
super('messaging-index', {
i: me.token
});
}
}