UNPKG
nest-cli
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Unofficial command-line tool to control Nest devices
github.com/jasonmit/nest-cli
jasonmit/nest-cli
nest-cli
/
lib
/
api
/
smoke-detector.js
12 lines
(9 loc)
•
183 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'
;
class
SmokeDetector
{
constructor
(
api
) {
this
.
api
= api;
this
.
tokens
= api.
tokens
;
this
.
transport
= api.
transport
; } }
module
.
exports
=
SmokeDetector
;