@sv-print/hiprint 0.3.24 → 0.3.26

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/dist/index.d.ts CHANGED
@@ -218,6 +218,7 @@ export declare class PrintTemplate {
218
218
  ext?: {
219
219
  callback?: () => void;
220
220
  styleHandler?: () => string;
221
+ statusCallback?: (status: any) => void;
221
222
  }
222
223
  ) => void;
223
224
  print2: (data: PrintData, options?: Print2Options) => void;
@@ -228,7 +229,7 @@ export declare class PrintTemplate {
228
229
  rotatePaper: () => void;
229
230
  setPaper: (width: number, height: number) => void;
230
231
  getOrient: () => number;
231
- zoom: (scale: number) => void;
232
+ zoom: (scale: number, save?: boolean, toHistory?: boolean) => void;
232
233
  undo: () => any;
233
234
  redo: () => any;
234
235
  getPrintStyle: () => string;