tsv2-library 0.3.41 → 0.3.43

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.
@@ -98,6 +98,12 @@ export type ButtonScanEmits = {
98
98
  'beforeStartScan': [];
99
99
  };
100
100
 
101
+ export type ButtonScanExposes = {
102
+ onBeforeStartScan: () => void;
103
+ startScan: () => void;
104
+ stopScan: (afterScan?: boolean) => void;
105
+ };
106
+
101
107
  /**
102
108
  * **TSVue v2 - ButtonScan**
103
109
  *
@@ -36,6 +36,10 @@ export interface ButtonSearchByScanProps {
36
36
  bulk?: boolean;
37
37
  }
38
38
 
39
+ export type ButtonSearchByScanExposes = {
40
+ stopScan: (afterScan?: boolean) => void;
41
+ };
42
+
39
43
  /**
40
44
  * **TSVue v2 - ButtonSearchByScan**
41
45
  *