yumechi-no-kuni/src/web/app/common/scripts/messaging-index-stream.ts
2017-11-14 00:54:16 +09:00

14 lines
213 B
TypeScript

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