import ITranslation from '../Translation'; export interface IBuylistItem { readonly img: string; readonly name: ITranslation[]; readonly slug: string; readonly finish: string; readonly buybackPrice: number; readonly qty: number; readonly sku: string; readonly category_name?: ITranslation[]; readonly set_name?: ITranslation[]; } export interface IBuylistCustomer { firstname: string; lastname: string; email: string; phone: string; } export type ConvoyOptions = 'ship' | 'in_person';