Skip to content

Commit a307d94

Browse files
committedMar 21, 2025
frontend/api: use TSubscriptionCallback in syncDeviceList
1 parent 4f80331 commit a307d94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎frontends/web/src/api/devicessync.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
import { subscribeEndpoint, TUnsubscribe } from './subscribe';
17+
import { subscribeEndpoint, TSubscriptionCallback, TUnsubscribe } from './subscribe';
1818
import { TDevices } from './devices';
1919

2020
/**
@@ -23,7 +23,7 @@ import { TDevices } from './devices';
2323
* Returns a method to unsubscribe.
2424
*/
2525
export const syncDeviceList = (
26-
cb: (accounts: TDevices,) => void
26+
cb: TSubscriptionCallback<TDevices>,
2727
): TUnsubscribe => {
2828
return subscribeEndpoint('devices/registered', cb);
2929
};

0 commit comments

Comments
 (0)