This package include Types definitions to use fitbit-weather with TypeScript.
You could use a any package manager to install this module. It was tested with npm and pnpm.
npm install fitbit-weather-types --save-dev
Update the tsconfig.json
inside the app folder. Add "../node_modules/fitbit-weather-types/types"
to paths to include.
{
"extends": "../tsconfig.json",
"include": [
"**/*.ts",
"../node_modules/fitbit-sdk-types/types/device",
"../node_modules/fitbit-weather-types/types"
]
}
Update the tsconfig.json
inside the companion folder. Add "../node_modules/fitbit-weather-types/types"
to paths to include.
{
"extends": "../tsconfig.json",
"include": [
"**/*.ts",
"../node_modules/fitbit-sdk-types/types/companion",
"../node_modules/fitbit-weather-types/types",
]
}