Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

webrtc-streaming-core

Package Overview
Dependencies
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webrtc-streaming-core - npm Package Compare versions

Comparing version 1.1.26 to 1.1.27

6

dist/hid/hid.d.ts

@@ -31,6 +31,8 @@ import { AxisType } from "../models/hid.model";

private mouseButtonMovement;
mouseButtonDown(event: {
private mouseButtonDown;
private mouseButtonUp;
MouseButtonDown(event: {
button: number;
}): void;
mouseButtonUp(event: {
MouseButtonUp(event: {
button: number;

@@ -37,0 +39,0 @@ }): void;

@@ -237,2 +237,10 @@ "use strict";

return;
this.MouseButtonDown(event);
}
mouseButtonUp(event) {
if (this.disableMouse)
return;
this.MouseButtonUp(event);
}
MouseButtonDown(event) {
let code = keys_model_1.EventCode.MouseDown;

@@ -243,5 +251,3 @@ this.SendFunc((new keys_model_2.HIDMsg(code, {

}
mouseButtonUp(event) {
if (this.disableMouse)
return;
MouseButtonUp(event) {
let code = keys_model_1.EventCode.MouseUp;

@@ -248,0 +254,0 @@ this.SendFunc((new keys_model_2.HIDMsg(code, {

{
"name": "webrtc-streaming-core",
"version": "1.1.26",
"version": "1.1.27",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/app.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc