import BaseAction from '../BaseAction'; import { ActionName } from '../types'; export class GetOnlineClient extends BaseAction> { actionName = ActionName.GetOnlineClient; protected async _handle(payload: void) { } }