UNPKG

mobyo-interfaces

Version:
21 lines (20 loc) 454 B
import { IIFoodAddress } from "./i-ifood-address"; export interface IIFoodMerchant { id: string; name: string; corporateName: string; description: string; averageTicket: number; exclusive: true; type: string; status: string; createdAt: Date | string; address: IIFoodAddress; operations: { name: string; salesChannel: { name: string; enabled: string; }; }; }