import type { CurrencyCode, Item } from './common'; export interface RefundParams { currency?: CurrencyCode; transaction_id?: string; value?: number; affiliation?: string; coupon?: string; shipping?: number; tax?: number; items?: T[]; } export interface RefundEvent { name: 'refund'; params: RefundParams; }