import { Item } from './ItemType'; import { BaseParamsType } from './BaseParamsType'; export interface CheckoutParamsType extends BaseParamsType { amount: number; deliveryAddress?: string; deliveryCity?: string; deliveryCountry?: string; items?: [Item]; }