@spartacus/core
Version:
Spartacus - the core framework
16 lines (15 loc) • 746 B
TypeScript
import { Actions } from '@ngrx/effects';
import { Action } from '@ngrx/store';
import { Observable } from 'rxjs';
import { UserPaymentConnector } from '../../connectors/payment/user-payment.connector';
import * as i0 from "@angular/core";
export declare class UserPaymentMethodsEffects {
private actions$;
private userPaymentMethodConnector;
loadUserPaymentMethods$: Observable<Action>;
setDefaultUserPaymentMethod$: Observable<Action>;
deleteUserPaymentMethod$: Observable<Action>;
constructor(actions$: Actions, userPaymentMethodConnector: UserPaymentConnector);
static ɵfac: i0.ɵɵFactoryDeclaration<UserPaymentMethodsEffects, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<UserPaymentMethodsEffects>;
}