Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 5x 5x 5x 5x 5x 5x | import { createAction } from '@ngrx/store';
import { payload } from 'ish-core/utils/ngrx-creators';
import { StoreLocation } from '../../models/store-location/store-location.model';
export const loadStores = createAction(
'[Stores] Load Stores',
payload<{ countryCode: string; postalCode: string; city: string }>()
);
export const loadStoresSuccess = createAction(
'[Stores API] Load Stores Success',
payload<{ stores: StoreLocation[] }>()
);
export const loadStoresFail = createAction('[Stores API] Load Stores Fail');
export const highlightStore = createAction('[Stores] Highlight Store', payload<{ storeId: string }>());
|