tsv2-library 0.2.7 → 0.2.8

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.
@@ -21,6 +21,10 @@ export interface DeviceStore {
21
21
  * Set new selected Device.
22
22
  */
23
23
  setDevice: (device: ScanDevice) => void;
24
+ /**
25
+ * Get device options from localStorage.
26
+ */
27
+ loadDevices: () => void;
24
28
  }
25
29
  declare const useDeviceStore: () => DeviceStore;
26
30
  export default useDeviceStore;