UNPKG

@spartacus/storefront

Version:

Spartacus Storefront is a package that you can include in your application, which allows you to add default storefront features.

14 lines (13 loc) 381 B
import { Observable } from 'rxjs'; import { OrderEntry } from '@spartacus/core'; /** * An interface for context which determinate export products source */ export interface GetOrderEntriesContext { /** * Retrieve order entries from context source for export action. * * @returns {Observable<OrderEntry[]>} */ getEntries(): Observable<OrderEntry[]>; }