uyem
Version:
WebRTC client-server SFU application
9 lines (8 loc) • 499 B
TypeScript
import { MessageType } from '../types/interfaces';
interface State {
type: MessageType.GET_MUTE_FOR_ALL | MessageType.SET_MUTE_FOR_ALL;
muteForAll: boolean;
}
export declare const changeMuteForAll: import("@reduxjs/toolkit").ActionCreatorWithPayload<State, string>;
declare const storeMuteForAll: import("@reduxjs/toolkit").EnhancedStore<State, import("redux").AnyAction, [import("redux-thunk").ThunkMiddleware<State, import("redux").AnyAction, undefined>]>;
export default storeMuteForAll;