telemetry fix, log no-telemetry (#802)

This commit is contained in:
Mike Sawka
2024-09-23 13:33:39 -07:00
committed by GitHub
parent de08cc8340
commit 62cc9d8a6b
5 changed files with 50 additions and 5 deletions
+3
View File
@@ -47,6 +47,9 @@ class ClientServiceType {
MakeWindow(): Promise<WaveWindow> {
return WOS.callBackendService("client", "MakeWindow", Array.from(arguments))
}
TelemetryUpdate(arg2: boolean): Promise<void> {
return WOS.callBackendService("client", "TelemetryUpdate", Array.from(arguments))
}
}
export const ClientService = new ClientServiceType();