Skip to content

Commit 6f96953

Browse files
Added missed semicolons
1 parent a3f30cb commit 6f96953

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

examples/typescript/src/index.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ declare var WEBSOCKET_URL: string;
1010
// Extend the MessageRecv to allow the engine version to exist as part of our config message from the signalling server
1111
class MessageExtendedConfig extends MessageRecv {
1212
peerConnectionOptions: RTCConfiguration;
13-
engineVersion: string
14-
platform: string
15-
frontendToSendOffer: boolean
13+
engineVersion: string;
14+
platform: string;
15+
frontendToSendOffer: boolean;
1616
};
1717

1818
// Extend PixelStreaming to use our custom extended config that includes the engine version
1919
class ScalablePixelStreaming extends PixelStreaming {
2020
// Create a new method that retains original functionality
2121
public handleOnConfig(messageExtendedConfig: MessageExtendedConfig) {
22-
this._webRtcController.handleOnConfigMessage(messageExtendedConfig)
22+
this._webRtcController.handleOnConfigMessage(messageExtendedConfig);
2323
}
2424
};
2525

@@ -31,7 +31,7 @@ document.body.onload = function () {
3131
// make usage of WEBSOCKET_URL if it is not empty
3232
let webSocketAddress = WEBSOCKET_URL;
3333
if (webSocketAddress != "") {
34-
config.setTextSetting(TextParameters.SignallingServerUrl, webSocketAddress)
34+
config.setTextSetting(TextParameters.SignallingServerUrl, webSocketAddress);
3535
}
3636

3737
// Create stream and spsApplication instances that implement the Epic Games Pixel Streaming Frontend PixelStreaming and Application types

0 commit comments

Comments
 (0)