import { Order } from './order'; import { ProductVariant } from './product-variant'; export interface OrderLine { id: string; order: Order; shopId?: string; productVariant: ProductVariant; } //# sourceMappingURL=order-line.d.ts.map