the browser-facing portion of osu!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 11 lines 420 B view raw
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0. 2// See the LICENCE file in the repository root for full licence text. 3 4import DispatcherAction from 'actions/dispatcher-action'; 5import ChannelJson from 'interfaces/chat/channel-json'; 6 7export default class ChannelJoinEvent extends DispatcherAction { 8 constructor(readonly json: ChannelJson) { 9 super(); 10 } 11}