UNPKG

cecon-interfaces

Version:
28 lines (27 loc) 841 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; /**@deprecated * Use SCALE mode default */ operationMode: EPayioChefOperationMode; printFormat: 'simple' | 'tabular'; showBarCode: boolean; showNetWeight: boolean; showOrderNumber: boolean; showPricePerKg: boolean; showTotalPrice: boolean; startOrderIn: number; tabFormat: string | null; tabMode: EPayioChefTabMode; tabRegistered: boolean; urlLogo: string; visionDeviceId: string; }