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.
- package/dist/src/components/v2/ButtonScan/ButtonScan.vue.d.ts +6 -0
- package/dist/src/components/v2/ButtonSearchByScan/ButtonSearchByScan.vue.d.ts +4 -0
- package/dist/tsv2-library.es.js +300 -291
- package/package.json +1 -1
- package/src/components/v2/ButtonScan/ButtonScan.vue.d.ts +6 -0
- package/src/components/v2/ButtonSearchByScan/ButtonSearchByScan.vue.d.ts +4 -0
|
@@ -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
|
*
|