We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f80331 commit a307d94Copy full SHA for a307d94
frontends/web/src/api/devicessync.ts
@@ -14,7 +14,7 @@
14
* limitations under the License.
15
*/
16
17
-import { subscribeEndpoint, TUnsubscribe } from './subscribe';
+import { subscribeEndpoint, TSubscriptionCallback, TUnsubscribe } from './subscribe';
18
import { TDevices } from './devices';
19
20
/**
@@ -23,7 +23,7 @@ import { TDevices } from './devices';
23
* Returns a method to unsubscribe.
24
25
export const syncDeviceList = (
26
- cb: (accounts: TDevices,) => void
+ cb: TSubscriptionCallback<TDevices>,
27
): TUnsubscribe => {
28
return subscribeEndpoint('devices/registered', cb);
29
};
0 commit comments