fitbit-sdk-types
Advanced tools
Comparing version 8.0.2 to 8.0.3
{ | ||
"name": "fitbit-sdk-types", | ||
"version": "8.0.2", | ||
"version": "8.0.3", | ||
"author": "Sergio Morchón Poveda <sergio.morchon@outlook.com>", | ||
@@ -5,0 +5,0 @@ "description": "Types for Fitbit SDK.", |
@@ -11,5 +11,5 @@ type EventTarget<EventMap> = { | ||
} & { | ||
[EventName in keyof EventMap as `on${string & EventName}`]: ( | ||
event: EventMap[EventName], | ||
) => void; | ||
[EventName in keyof EventMap as `on${string & EventName}`]?: | ||
| ((event: EventMap[EventName]) => void) | ||
| null; | ||
}; | ||
@@ -16,0 +16,0 @@ |
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
64167