Skip to content

Commit

Permalink
Update package.json and socket.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
RSamaium committed Dec 3, 2023
1 parent b25c666 commit f971d22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sync-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simple-room",
"version": "3.0.4",
"version": "3.0.5",
"description": "",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion sync-server/src/transports/socket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { TransportCommon } from './common';
import { BehaviorSubject } from 'rxjs';
import { Utils } from '../utils';
import { NotAuthorized } from '../errors/not-authorized';
import { Buffer } from 'buffer';
import { Buffer } from 'buffer/';

export type BandwidthSocket = { incoming: { size: number, timestamp: number }[], outgoing: { size: number, timestamp: number }[] }
export type BandwidthData = Record<string, BehaviorSubject<BandwidthSocket>>
Expand Down

0 comments on commit f971d22

Please sign in to comment.