Merge branch 'fix-typo-drive' into 'main'
[ProtonMail-WebClient.git] / packages / redux-shared-store / listenerInterface.ts
blobb025fd1cf7fb365233ce91ab86a770aeb511fa1a
1 import type { TypedStartListening } from '@reduxjs/toolkit';
3 import type { ProtonDispatch, ProtonThunkArguments } from '@proton/redux-shared-store-types';
5 export type SharedStartListening<RequiredState> = TypedStartListening<
6     RequiredState,
7     ProtonDispatch<any>,
8     ProtonThunkArguments
9 >;