fitbit-sdk-types
Advanced tools
Comparing version 4.1.6 to 4.1.7
{ | ||
"name": "fitbit-sdk-types", | ||
"version": "4.1.6", | ||
"version": "4.1.7", | ||
"author": "Sergio Morchón Poveda <sergio.morchon@outlook.com>", | ||
@@ -31,3 +31,3 @@ "description": "Types for Fitbit SDK.", | ||
"test": "npm run test:app && npm run test:companion && npm run test:settings", | ||
"prettier": "prettier **/*.ts **/*.tsx **/*.json **/*.md", | ||
"prettier": "prettier \"**/*.ts\" \"**/*.tsx\" \"**/*.json\" \"**/*.yml\" \"**/*.md\"", | ||
"tslint": "tslint types/**/*.ts", | ||
@@ -39,8 +39,8 @@ "check-code": "npm run tslint && npm run prettier -- -l", | ||
"devDependencies": { | ||
"@types/node": "^11.13.19", | ||
"@types/node": "^11.13.20", | ||
"prettier": "^1.18.2", | ||
"tslint": "^5.19.0", | ||
"tslint": "^5.20.0", | ||
"tslint-config-prettier": "^1.18.0", | ||
"typescript": "^3.5.3" | ||
"typescript": "^3.6.3" | ||
} | ||
} |
# Fitbit SDK Types ✔ | ||
[](https://badge.fury.io/js/fitbit-sdk-types) | ||
[](https://travis-ci.com/SergioMorchon/fitbit-sdk-types) | ||
 | ||
@@ -6,0 +6,0 @@ Add types to your Fitbit CLI project and work safely with TypeScript preventing you of doing stupid mistakes. |
@@ -27,2 +27,3 @@ interface HeaderMap { | ||
readonly url: string; | ||
constructor(url: string); | ||
} | ||
@@ -29,0 +30,0 @@ interface Response extends Body {} |
@@ -0,1 +1,2 @@ | ||
declare const Fragment: (props: { children: JSX.Element }) => JSX.Element; | ||
declare const Page: (props: { children: JSX.Element }) => JSX.Element; | ||
@@ -2,0 +3,0 @@ declare const Section: (props: { |
@@ -5,3 +5,6 @@ declare namespace JSX { | ||
} | ||
interface IntrinsicAttributes { | ||
key?: string | number; | ||
} | ||
interface Element {} | ||
} |
50016
1600