import { ICustomer, IProvider } from '../../shopweb'; import { IPricePoint } from '../../domain/IPricePoint'; export interface IPricePointsResponse { pricePoints: IPricePoint[]; paymentMethods: IProvider[]; customer: ICustomer; }