Remove client-side isLoggedIn value
[ProtonMail-WebClient.git] / packages / wallet / store / thunk.ts
blob41862213a331a3d1c89d14bf4f7505f884cfcf6d
1 import type { WasmProtonWalletApiClient } from '@proton/andromeda';
2 import { type NotificationsManager } from '@proton/components/containers/notifications/manager';
3 import type { ProtonThunkArguments } from '@proton/redux-shared-store-types';
5 export interface WalletThunkArguments extends ProtonThunkArguments {
6     walletApi: WasmProtonWalletApiClient;
7     notificationsManager: NotificationsManager;
10 export const extraThunkArguments = {} as WalletThunkArguments;