import { MockDaffAuthResetPasswordFacade } from '@daffodil/auth/state/testing'
@Injectable()
class MockDaffAuthResetPasswordFacade implements DaffAuthResetPasswordFacadeInterface {
token$: BehaviorSubject<string> = new BehaviorSubject<string>('')
loading$: BehaviorSubject<boolean> = new BehaviorSubject<boolean>(false)
errors$: BehaviorSubject<DaffStateError[]> = new BehaviorSubject<DaffStateError[]>([])
dispatch(action: Action<string>): void
}
void
Parameter | action: Action |
---|---|
Description |