Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fitbit-sdk-types

Package Overview
Dependencies
Maintainers
1
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fitbit-sdk-types - npm Package Compare versions

Comparing version 3.2.6 to 3.2.7

2

package.json
{
"name": "fitbit-sdk-types",
"version": "3.2.6",
"version": "3.2.7",
"author": "Sergio Morchón Poveda <sergio.morchon@outlook.com>",

@@ -5,0 +5,0 @@ "description": "Types for Fitbit SDK.",

@@ -15,3 +15,2 @@ declare module 'appbit' {

const me: Appbit;
export { me };
}
declare module 'clock' {
type Granularity = 'off' | 'seconds' | 'minutes' | 'hours';
interface TickEvent extends Event {
export interface TickEvent extends Event {
readonly date: Date;
}
interface Clock
export interface Clock
extends EventTarget<{
tick: TickEvent;
}> {
granularity: Granularity;
granularity: 'off' | 'seconds' | 'minutes' | 'hours';
ontick: (event: TickEvent) => void;

@@ -15,3 +14,3 @@ }

const clock: Clock;
export = clock;
export default clock;
}

@@ -41,3 +41,3 @@ declare module 'exercise' {

}
interface Exercise
export interface Exercise
extends EventTarget<{

@@ -44,0 +44,0 @@ statechange: Event;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc