1 2 3 4 5 6 7 8
import { Action } from "../flux/action"; export class SetWebsocketAction extends Action { constructor(public isConnected: boolean) { super(); } }