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

Types for Fitbit SDK.

  • 0.2.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
59
increased by22.92%
Maintainers
1
Weekly downloads
 
Created
Source

Fitbit SDK Types

Add types to your Fitbit project to use safely the SDK, work safely with TypeScript preventing you of doing stupid mistakes.

How to use in your app project

  1. Execute npm install --save-dev fitbit-sdk-types to add this type definitions.
  2. include them in your project's tsconfig.json file. It sould look like this tsconfig.json:
{
	"extends": "./node_modules/@fitbit/sdk/sdk-tsconfig.json",
	"include": [
		"node_modules/fitbit-sdk-types/device",
		"node_modules/fitbit-sdk-types/companion",
		"node_modules/fitbit-sdk-types/settings",
		"./**/*.ts",
		"./**/*.tsx"
	]
}
  1. Rename your files from .js to .ts and use it. For example, app/index.ts:
import { Accelerometer } from 'accelerometer';

const acc = new Accelerometer();
console.log(acc.activated);
console.log(acc.potato); // error

Examples

You can see a ton of official examples working as tests right here, under the ./test path.

Gotchas

  • Avoid using any in callbacks of defined functions: TypeScript will give it the correct type, but only if you let it be. If you cast them as any other type, you could be hiding errors (either in your code or in this type definition, or even in the official documentation).

  • Be careful about what you import: Currently, there is only one Fitbit build process for up to 3 different targets -to know: app, companion and settings-. So because of this, I didn't found a way of having one single tsconfig.json called from the fitbit-cli and different typings per target. So you will have to declare them all together, knowing that -for example- although there is an ambien module for accelerometer, it won't exist inside the companion target.

Contributing

Make a PR submitting at least the desired test examples to work under the .test path, ideally with some link to any of the Fitbit official sources to get more info.

Keywords

FAQs

Package last updated on 23 Oct 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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