@posx/core 5.3.97 → 5.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.d.ts +3 -0
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/package.publish.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -3389,6 +3389,8 @@ declare module '@posx/core/types/printer.type' {
|
|
|
3389
3389
|
kitchen_itemized_print: boolean;
|
|
3390
3390
|
/** Number of times to print */
|
|
3391
3391
|
print_times: number;
|
|
3392
|
+
/** Number of retries */
|
|
3393
|
+
retries: number;
|
|
3392
3394
|
}
|
|
3393
3395
|
export class Printer extends AppBaseModel implements IPrinter {
|
|
3394
3396
|
device_uid: string;
|
|
@@ -3403,6 +3405,7 @@ declare module '@posx/core/types/printer.type' {
|
|
|
3403
3405
|
status: PrinterStatus;
|
|
3404
3406
|
kitchen_itemized_print: boolean;
|
|
3405
3407
|
print_times: number;
|
|
3408
|
+
retries: number;
|
|
3406
3409
|
constructor();
|
|
3407
3410
|
}
|
|
3408
3411
|
export interface TemplateData {
|