fitbit-sdk-types
Advanced tools
Comparing version 3.1.0 to 3.1.1
{ | ||
"name": "fitbit-sdk-types", | ||
"version": "3.1.0", | ||
"version": "3.1.1", | ||
"author": "Sergio Morchón Poveda <sergio.morchon@outlook.com>", | ||
@@ -5,0 +5,0 @@ "description": "Types for Fitbit SDK.", |
@@ -18,3 +18,3 @@ declare module 'messaging' { | ||
} | ||
type ReadyState = 'CLOSED' | 'OPEN'; | ||
type ReadyState = number; | ||
interface MessageSocket | ||
@@ -29,4 +29,4 @@ extends EventTarget<{ | ||
class MessageSocket { | ||
readonly CLOSED: 'CLOSED'; | ||
readonly OPEN: 'OPEN'; | ||
readonly CLOSED: ReadyState; | ||
readonly OPEN: ReadyState; | ||
readonly MAX_MESSAGE_SIZE: number; | ||
@@ -33,0 +33,0 @@ readonly bufferedAmount: number; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
43280