cecon-interfaces
Version:
Interfaces de Projetos Cecon
20 lines (19 loc) • 559 B
TypeScript
export interface IMenuConfig {
paymentOnline: boolean;
paymentOffline: boolean;
adjustPrice: boolean;
adjustPriceValue: number;
desenfilaToken: string;
userToken: string;
liveApiToken: string;
mobyoToken: string;
iuguAccountId: string;
method: 'DELIVERY' | 'INDOOR' | 'TAKEOUT';
mode: 'DEFAULT' | 'TABLE' | 'PICKUP_AREA' | 'AUTO' | 'USER';
scheduled: boolean;
allowTakeout: boolean;
allowTable: boolean;
allowDefault: boolean;
layout: 'RESTAURANT' | 'MARKET' | 'PIZZA';
preOrder: boolean;
}