iceshrimp/src/web/app/common/scripts/streaming/messaging-index-stream.ts
2017-11-17 01:24:44 +09:00

13 lines
200 B
TypeScript

import Stream from './stream';
/**
* Messaging index stream connection
*/
export default class Connection extends Stream {
constructor(me) {
super('messaging-index', {
i: me.token
});
}
}