fitbit-sdk-types
Advanced tools
Comparing version 3.0.1 to 3.1.0
{ | ||
"name": "fitbit-sdk-types", | ||
"version": "3.0.1", | ||
"version": "3.1.0", | ||
"author": "Sergio Morchón Poveda <sergio.morchon@outlook.com>", | ||
@@ -5,0 +5,0 @@ "description": "Types for Fitbit SDK.", |
@@ -65,15 +65,13 @@ type ElementState = | ||
} | ||
interface VirtualTileListDelegate { | ||
configureTile( | ||
tile: VirtualTileListItem, | ||
tileInfo: VirtualTileListItemInfo, | ||
): void; | ||
getTileInfo(position: number): VirtualTileListItemInfo; | ||
} | ||
interface VirtualTileListItemInfo { | ||
type: string; | ||
[extraProperties: string]: any; | ||
} | ||
interface VirtualTileList extends ContainerElement { | ||
delegate: VirtualTileListDelegate; | ||
interface VirtualTileListDelegate<ItemInfo extends VirtualTileListItemInfo> { | ||
configureTile(tile: VirtualTileListItem, tileInfo: ItemInfo): void; | ||
getTileInfo(position: number): ItemInfo; | ||
} | ||
interface VirtualTileList<ItemInfo extends VirtualTileListItemInfo> | ||
extends ContainerElement { | ||
delegate: VirtualTileListDelegate<ItemInfo>; | ||
readonly firstVisibleTile: number; | ||
@@ -80,0 +78,0 @@ readonly lastVisibleTile: 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
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
0
43285
52
1370