UNPKG

mobyo-interfaces

Version:
16 lines (15 loc) 375 B
import { IAddress, ICoords } from '../../general'; import { IOrderTotal } from '../../order'; export interface IVoucherCustomer { customerId: string; cords: ICoords; address: IAddress; phoneNumber: string; meta: string; id: string; itensCount: number; total: IOrderTotal; averageAmount: number; createdAt: Date; updatedAt: Date; }