UNPKG

mobyo-interfaces

Version:
13 lines (12 loc) 273 B
import { IMerchantAddress } from "./i-merchant-address"; export interface IMerchant { keys: Array<{ field: string; value: string; }>; deliveryAreas: any[]; id: string; name: string; phones: string[]; address: IMerchantAddress; }