@dcl/js-runtime 7.0.0-3548419522.commit-ddcf4b7 → 7.0.0-3568547351.commit-5420eac

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +8 -1
  2. package/package.json +3 -2
package/index.d.ts CHANGED
@@ -75,9 +75,16 @@ interface WebSocket {
75
75
 
76
76
  declare var WebSocket: {
77
77
  prototype: WebSocket
78
- new(url: string, protocols?: string | string[]): WebSocket
78
+ new (url: string, protocols?: string | string[]): WebSocket
79
79
  readonly CLOSED: number
80
80
  readonly CLOSING: number
81
81
  readonly CONNECTING: number
82
82
  readonly OPEN: number
83
83
  }
84
+
85
+ declare var console: {
86
+ log(message?: any, ...optionalParams: any[]): void;
87
+ error(message?: any, ...optionalParams: any[]): void;
88
+ }
89
+
90
+ declare const DEBUG: boolean
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/js-runtime",
3
- "version": "7.0.0-3548419522.commit-ddcf4b7",
3
+ "version": "7.0.0-3568547351.commit-5420eac",
4
4
  "description": "JavaScript runtime definitions for Decentraland environments",
5
5
  "scripts": {},
6
6
  "keywords": [],
@@ -11,9 +11,10 @@
11
11
  "tsconfig.json"
12
12
  ],
13
13
  "license": "Apache-2.0",
14
+ "types": "./index.d.ts",
14
15
  "typings": "./index.d.ts",
15
16
  "publishConfig": {
16
17
  "access": "public"
17
18
  },
18
- "commit": "ddcf4b77178942be973faca9ef4e58267727c4d8"
19
+ "commit": "5420eac2bc4215f214136d8b1331864a19118824"
19
20
  }