reducers: {
speechSynth: Reducer<
{
active: boolean;
inProgress: boolean;
messagesQueue: SpeechSynthMessageWithRate[];
paused: boolean;
rate: { current: number; default: number };
rateChangeInProgress: boolean;
},
AnyAction,
>;
} = ...
Type Declaration
speechSynth: Reducer<
{
active: boolean;
inProgress: boolean;
messagesQueue: SpeechSynthMessageWithRate[];
paused: boolean;
rate: { current: number; default: number };
rateChangeInProgress: boolean;
},
AnyAction,
>