UNPKG

mobyo-interfaces

Version:
10 lines (9 loc) 309 B
import { IOrder } from '../../../order'; import { EPayuioAppSlug } from '../../app'; import { IPayioOrderIndoor } from './i-order-indoor'; export interface IPayioOrder extends IOrder { indoor: IPayioOrderIndoor | null; deviceId: string | null; appId: string | null; appSlug: EPayuioAppSlug; }