UNPKG

mobyo-interfaces

Version:
23 lines (22 loc) 728 B
import { EPayioChefOperationMode } from '../enums'; import { EBarcodeFormat } from '../enums/barcode-format.enum'; import { EPayioChefTabMode } from '../enums/tab-mode.enum'; export interface IPayioChefConfigOperation { barcodeFormat: EBarcodeFormat; barcodeInitialFlag: string; bipOnPrint: boolean; headerMessages: string[]; listItems: string[]; multiOrder: boolean; operationMode: EPayioChefOperationMode; printFormat: 'simple' | 'tabular'; showBarCode: boolean; showNetWeight: boolean; showOrderNumber: boolean; showPricePerKg: boolean; showTotalPrice: boolean; startOrderIn: number; tabFormat: string | null; tabMode: EPayioChefTabMode; urlLogo: string; }