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;