UNPKG

@spartacus/core

Version:

Spartacus - the core framework

8 lines (7 loc) 506 B
import { Review } from '../../../model/product.model'; import { ProductActions } from '../actions/index'; import { ProductReviewsState } from '../product-state'; export declare const initialState: ProductReviewsState; export declare function reducer(state: ProductReviewsState, action: ProductActions.ProductReviewsAction): ProductReviewsState; export declare const getReviewList: (state: ProductReviewsState) => Review[]; export declare const getReviewProductCode: (state: ProductReviewsState) => string;