fitbit-sdk-types
Advanced tools
Comparing version 1.0.4 to 1.0.5
{ | ||
"name": "fitbit-sdk-types", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "Types for Fitbit SDK.", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -1,10 +0,9 @@ | ||
interface EventInit {} | ||
interface EventListener {} | ||
interface EventTarget<EventMap = {}> { | ||
addEventListener<EventName extends keyof EventMap>( | ||
type: EventName, | ||
listener: (event: EventMap[EventName]) => void, | ||
eventListener: (event: EventMap[EventName]) => void, | ||
): void; | ||
removeEventListener<EventName extends keyof EventMap>( | ||
eventName: EventName, | ||
eventListener: (event: EventMap[EventName]) => void, | ||
): void; | ||
@@ -11,0 +10,0 @@ } |
declare namespace JSX { | ||
interface ElementAttributesProperty { | ||
props: any; | ||
} | ||
interface IntrinsicElements {} | ||
interface ElementChildrenAttribute { | ||
@@ -7,0 +3,0 @@ children: any; |
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
35634
1207