Type alias Action

Action: Immutable<{
    muted: boolean;
    type: "MUTE_CHANGE";
    userId: string;
} | {
    type: "STREAM_REMOVED";
    userId: string;
}>

Generated using TypeDoc