-
Notifications
You must be signed in to change notification settings - Fork 0
/
staticscript.d.ts
1490 lines (1211 loc) · 27.2 KB
/
staticscript.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
declare type int8 = {};
declare type int16 = {};
declare type int32 = {};
declare type int64 = {};
declare type int128 = {};
declare type uint8 = {};
declare type uint16 = {};
declare type uint32 = {};
declare type uint64 = {};
declare type uint128 = {};
declare type float32 = {};
declare type float64 = number;
declare type float128 = {};
interface Boolean {
constructor(b: boolean): boolean;
}
interface Function {}
interface IArguments {}
interface Number {
toString(): string;
toFixed(n: number): string;
constructor(): number;
constructor(n: number): number;
}
interface Object {}
interface RegExp {
test(s: string): boolean;
exec(s: string): Array<string>;
constructor(s: string, g: string);
}
interface String {
concat(s: string): string;
replace(s: RegExp, t: string): string;
replace(s: string, t: string): string;
constructor(f: number): string;
indexOf(s: string): number;
split(s: string): Array<string>;
split(s: string, n: number): Array<string>;
split(s: RegExp): Array<string>;
trim(): string;
charAt(n: number): string;
slice(start: number, end: number): string;
slice(dist_from_end: number): string;
length: number;
match(s: string): Array<string>;
match(r: RegExp): Array<string>;
toUpperCase(): string;
toLowerCase(): string;
substr(start: number, end: number): string;
substr(start_to_idx: number): string;
search(t: RegExp): number;
search(s: string): number;
lastIndexOf(s: string): number;
substring(n: number): string;
substring(s: number, e: number): string;
toString(): string;
charCodeAt(n : number): number;
}
interface Array<T> {
length: number;
join(s: string): string;
toString(): string;
indexOf(s: number): number;
indexOf(s: string): number;
slice(start: number, end: number): Array<string>;
push(s: string, s2: string);
push(s: string);
}
declare function puts(str: string): void;
declare function parseInt(str: string): number;
declare function parseInt(str:string, base: number): number;
declare function parseFloat(str: string): number;
declare function parseFloat(s: number): number;
declare function String(n: number): string;
declare function Number(): number;
declare function Number(s: string): number;
declare function Number(n: number): number;
declare function RegExp(s: string): RegExp;
declare function RegExp(r: RegExp): RegExp;
declare function RegExp(s: string, g: string): RegExp;
declare function encodeURIComponent(s: string): string;
declare function encodeURI(s: string): string;
declare class Action {
skip(): void;
skip(s: string): void;
setMessage(s: string);
setIssueTitle(s: string);
setIssueBody(s: string);
setText(s: string);
setLinkUrl(s: string);
setTitle(s: string);
setDescription(s: string);
setPos(s: string);
setUrl(s: string);
setEnd(s: string);
setNotes(s: string);
setStartDate(s: string);
setDuration(s: string);
setSubject(s: string);
setBody(s: string);
setFileName(s: string);
setFilename(s: string);
setAdvancedOptions(s: string);
setQuantity(s: string);
}
declare class MomentJS {
add(rhs: MomentJS): MomentJS;
add(n: number, s: string): MomentJS;
toString(): string;
format(s: string): string;
day(): number;
hour(): number;
hour(n: number): MomentJS;
minute(n: number): MomentJS;
minute(): number;
minutes(): number;
hours(): number;
weekday(): number;
static tz(s: string): MomentJS;
constructor();
constructor(s: string);
}
declare function moment(): MomentJS;
declare function moment(t: Time): MomentJS;
declare function moment(s: string): MomentJS;
declare function moment(t: MomentJS, format: string): MomentJS;
declare function moment(s: string, format: string): MomentJS;
declare class Date {
constructor();
constructor(n: number);
constructor(d: Date);
constructor(year: number, month: number, day: number);
constructor(s: string);
getDay(): number;
getDate(): number;
getHours(): number;
setFullYear(n: number, n1: number, n3: number): number;
getFullYear(): number;
getTime(): number;
getMonth(): number;
static parse(s: string): number;
}
declare class TriggerData {
ConditionImageURL: string;
}
declare class Smartthings {
static turnOnSmartthings: Action;
}
declare class currentWeather {
HighTempCelsius: number;
Condition: string;
TodaysCondition: string;
LowTempFahrenheit: string;
SunriseAt: string;
SunsetAt: string;
CurrentCondition: string;
}
declare class Weather {
static tomorrowsForecastCallsFor: TriggerData;
static currentWeatherAtTime: currentWeather;
static currentConditionIs: currentWeather;
static tomorrowsWeatherAtTime: currentWeather;
static currentWeather: currentWeather;
}
declare class placeAPhoneCallObj {
OccurredAt: string;
CallLength: string;
ContactName: string;
FromNumber: string;
ToNumber: string;
}
declare class Powerview {
static executeSceneCollection: Action;
}
declare class AndroidPhone {
static placeAPhoneCall: placeAPhoneCallObj;
static receiveAPhoneCall: placeAPhoneCallObj;
}
declare class Clicksend {
static sendSms: Action;
}
declare class addDetailedEventObj {
setEndTime(endtime: string);
setStartTime(s: string);
setDescription(s: string);
setLocation(s: string);
skip(s: string);
skip();
setAllDay(s: string);
}
declare class eventEndsObj {
Title: string;
Description: string;
}
declare class quickAddEventObj {
skip();
setQuickAdd(s: string);
skip(s: string);
}
declare class Heatmiser {
static setTemp: Action;
}
declare class newEventAddedObj {
Starts: string;
Where: string;
Ends: string;
Title: string;
}
declare class Office365Calendar {
static createNewCalendarItem: Office365Obj;
}
declare class eventStartsObj {
Title: string;
}
declare class GoogleCalendar {
static addDetailedEvent: addDetailedEventObj;
static anyEventEnds: eventEndsObj;
static anyEventStarts: eventStartsObj;
static quickAddEvent: quickAddEventObj;
static newEventAdded: newEventAddedObj;
static eventFromSearchStarts: eventEndsObj;
}
declare class GardenaSmartSystem {
static actionMOWERPARKUNTILNEXTTASK: Action;
}
declare class LutronCasetaWireless {
static setScene: Action;
}
declare class BufferPhoto {
setPhotoUrl(s: string);
setMessage(m: string);
}
declare class Buffer {
static addToBufferWithPhoto: BufferPhoto;
}
declare class awayFromHomeObj {
HomeName: string;
SetAt: string;
}
declare class NestThermostat {
static setTemperature: Action;
static awayFromHome: awayFromHomeObj;
static homeFromAway: NestHome;
}
declare class HueColor {
skip(s: string);
skip();
setColor(s: string);
setBrightness(s: string);
}
declare class Hue {
static setColorAllHue: HueColor;
static setScene: Action;
static turnOnAllHue: Action;
static turnOffAllHue: Action;
static toggleAllHue: Action;
static setBrightnessAllHue: HueColor;
}
declare class IfNotifications {
static sendNotification: Action;
static sendRichNotification: Action;
}
declare class Skybell {
static record60sOfVideo: Action;
}
declare class Telldus {
static turnOnADevice: Action;
static turnOffADevice: Action;
}
declare class sendMeEmailObj {
skip();
skip(s: string);
setSubject(s: string);
setBody(s: string);
}
declare class IftttEmail {
BodyHTML: string;
}
declare class Email {
static sendMeEmail: sendMeEmailObj;
static sendIftttAnEmail: IftttEmail;
}
declare class SpotifyTrackPlayListAdded {
AddedBy: string;
TrackName: string;
TrackURL: string;
ArtistName: string;
AlbumName: string;
PlaylistName: string;
}
declare class AddTrackToPlaylist {
setSearchQuery(s: string);
setArtistName(s: string);
setPlaylist(s: string);
skip();
skip(s: string);
}
declare class Spotify {
static newTrackAddedToPlaylist: SpotifyTrackPlayListAdded;
static addATrackToAPlaylist: AddTrackToPlaylist;
static newRecentlyPlayedTrack: SpotifyTrackPlayListAdded;
static startPlayback: Action;
}
declare class Gmail {
static sendAnEmail: Action;
static sendYourselfAnEmail: sendMeEmailObj;
}
declare class Trigger {
static LinkToProfile: string;
static EntryTitle: string;
static Text: string;
static DeviceName: string;
static Title: string;
static CreatedAt: string;
static Description: string;
static AddedItem: string;
static Filename: string;
}
declare class NetatmoSecurity {
static sethomeaway: Action;
}
declare class eventObj {
EventCity: string;
}
declare class Songkick {
static newEventFromTrackedArtist: eventObj;
}
declare class Tweet {
setTweet(s: string);
skip();
skip(s: string);
CreatedAt: string;
Text: string;
LinkToTweet: string;
TweetEmbedCode: string;
UserName: string;
FirstLinkUrl: string;
}
declare class newTweetWithImage {
setTweet(s: string);
setPhotoUrl(s: string);
skip();
}
declare class Wiz {
static turnOn: Action;
}
declare class Twitter {
static postNewTweet: Tweet;
static postNewTweetWithImage: newTweetWithImage;
static newTweetByUser: Tweet;
static newTweetFromSearch: Tweet;
static newFavoriteTweet: Tweet;
static newTweetByYou: Tweet;
}
declare class FeedEntry {
EntryTitle: string;
EntryContent: string;
EntryImageUrl: string;
EntryUrl: string;
}
declare class Feed {
static newFeedItem: FeedEntry;
static newFeedItemMatches: FeedEntry;
}
declare class sendMsgObj {
skip(): void;
skip(s: string): void;
setText(s: string);
setIncludeWebPagePreview(s: string);
}
declare class Telegram {
static sendMessage: sendMsgObj;
static sendPhoto: photoFromUrl;
}
declare class HelloWorldObj {
OrderCloserDailySalesCount: string;
}
declare class HelloWorld {
static newSale: HelloWorldObj;
}
declare class EvernoteTag {
localeCompare(s: string): number;
}
declare class EvernoteNote {
skip();
skip(s: string);
setTitle(s: string);
setTags(s: string);
Tags: EvernoteTag;
}
declare class Evernote {
static appendToNote: EvernoteNote;
static appendChecklistItem: EvernoteNote;
static createNote: EvernoteNote;
static newNoteInNotebook: EvernoteNote;
}
declare class GooglePhoto {
PhotoUrl: string;
Filename: string;
}
declare class GoogleDrive {
static anyNewPhoto: GooglePhoto;
}
declare class photoFromUrl {
setPhotoUrl(s: string);
setCaption(s: string);
setTitle(s: string);
setDescription(s: string);
setTags(s: string);
skip();
SourceUrl: string;
Title: string;
}
declare class Flickr {
static uploadPublicPhotoFromUrl: photoFromUrl;
static newFavoritePublicPhoto: photoFromUrl;
}
declare class TumblrPhotoPost {
setSourceUrl(s: string);
setCaption(s: string);
setTags(s: string);
PhotoFullUrl: string;
skip();
}
declare class ohmHourObj {
OhmHourEnd: string;
OhmHourStart: string;
}
declare class Ohmconnect {
static ohmHourStart: ohmHourObj;
}
declare class Tumblr {
static createPhotoPost: TumblrPhotoPost;
static newPhotoPost: TumblrPhotoPost;
}
declare class WemoSwitch {
static attributeSocketOnDiscrete: Action;
static attributeSocketOffDiscrete: Action;
static attributeSocketToggleDiscrete: Action;
}
declare class RedditPost {
Title: string;
PostURL: string;
}
declare class Reddit {
static newHotPostInSubreddit: RedditPost;
static submitLinkReddit: Action;
static newPostInSubreddit: RedditPost;
static newLikeByYouReddit: RedditPost;
static newTopPostInSubreddit: RedditPost;
}
declare class Yeelight {
static setScene: Action;
static onOff: YeelightOnOff;
}
declare class VideoDesc {
Title: string;
Url: string;
}
declare class YoutubeColorTier {
ColorTier: string;
}
declare class YoutubeObj {
Url: string;
Title: string;
}
declare class Youtube {
static newPublicVideoFromSubscriptions: VideoDesc;
static newSuperchat: YoutubeColorTier;
static newVideoUploadedYt: YoutubeObj;
}
declare class sensData {
Moisture: string;
}
declare class Netro {
static sensorData: sensData;
static noWater: Action;
static reportWeather: WeatherObj;
static water: Action;
}
declare class alertTime {
AlertTime: string;
}
declare class AmazonAlexa {
static alarmFired: alertTime;
}
declare class callDevice {
setMessage(s: string);
skip(s: string);
skip();
}
declare class VoipCalls {
static callMyDevice: callDevice;
}
declare class InstagramVideo {
Caption: string;
}
declare class InstagramPhoto {
CreatedAt: string;
Caption: string;
SourceUrl: string;
Url: string;
}
declare class Instagram {
static anyNewVideoByYouInstagram: InstagramVideo;
static anyNewPhotoByYou: InstagramPhoto;
}
declare class PhotoPage {
skip();
setPhotoUrl(s: string);
setMessage(s: string);
setAlbum(s: string);
}
declare class StatusMessage {
Message: string;
PageUrl: string;
skip();
skip(s: string);
}
declare class FacebookPages {
static createPhotoPage: PhotoPage;
static newStatusMessageByPage: StatusMessage;
static createStatusMessagePage: StatusMessage;
}
declare class createFeedly {
skip(s: string);
}
declare class Feedly {
static createNewEntryFeedly: createFeedly;
}
declare class RoosterTransfer {
setAmount(s: string);
}
declare class RoosterCardSpend {
SpendAmountDecimal: string;
}
declare class Roostermoney {
static cardSpend: RoosterCardSpend;
static transfer: RoosterTransfer;
}
declare class WemoStatus {
SwitchName: string;
SwitchedOffAt: string;
SwitchedOnAt: string;
SwitchedToStandbyAt: string;
}
declare class WemoInsightSwitch {
static attributeINSIGHTOFFN: WemoStatus;
static attributeInsightOnDiscrete: Action;
static attributeINSIGHTONN: WemoStatus;
static attributeINSIGHTSTANDBYN: WemoStatus;
}
declare class GoogleSpreadSheet {
setFormattedRow(s: string);
skip();
skip(s: string);
}
declare class GoogleSheetRow {
ColumnA: string;
ColumnB: string;
ColumnC: string;
}
declare class GoogleSheets {
static appendToGoogleSpreadsheet: GoogleSpreadSheet;
static newRowInSpreadsheet: GoogleSheetRow;
}
declare class UploadBox {
skip(s: string);
}
declare class Box {
static uploadFileFromUrlBox: UploadBox;
}
declare class deviceVolume {
skip(s: string);
}
declare class androidBluetooth {
DeviceName: string;
}
declare class AndroidNotification {
NotificationTitle: string;
ReceivedAt: string;
AppName: string;
}
declare class AndroidWallpaper {
setPhotoUrl(s: string);
}
declare class AndroidDevice {
static setDeviceVolume: deviceVolume;
static bluetoothConnected: androidBluetooth;
static playBestSong: Action;
static newNotificationFromApp: AndroidNotification;
static anyNewNotification: AndroidNotification;
static setWallpaper: AndroidWallpaper;
}
declare class AndroidMessage {
Text: string;
}
declare class AndroidMessages {
static sendAMessage: Action;
static receivedAMessageFromNumber: AndroidMessage;
static receivedAMessage: AndroidMessage;
}
declare class photoPost {
setTitle(s: string);
setSourceUrl(s: string);
setCaption(s: string);
setCategories(s: string);
setTags(s: string);
}
declare class Wordpress {
static createPhotoPostWp: photoPost;
}
declare class lightOn {
skip();
}
declare class HiveActiveLight {
static setLightOn: lightOn;
}
declare class DCUTransaction {
Amount: string;
TransactionDetail: string;
}
declare class DCUPlaidIFTTT {
static newTransactions: DCUTransaction;
}
declare class smsMessage {
setMessage(s: string);
skip();
skip(s: string);
}
declare class Sms {
static sendMeText: smsMessage;
}
declare class collarInfoClass {
CreatedAt: string;
Battery: string;
Temperature: string;
}
declare class SeatObj {
MaxSpeedLimit: string;
}
declare class Seat {
static testMaxSpeed: SeatObj;
}
declare class LinkMyPet {
static collarInfo: collarInfoClass;
}
declare class YeelightOnOff {
setOnOffOption(s: string);
skip(s: string);
}
declare class MonzoPotDeposit {
setAmount(s: string);
}
declare class MonzoCardPurchase {
Category: string;
MerchantName: string;
AccountCurrencyCode: string;
LocalCurrencyCode: string;
AmountInAccountCurrency: string;
AmountInLocalCurrency: string;
AccountCurrencySymbol: string;
MerchantAddress: string;
LocalCurrencySymbol: string;
}
declare class MonzoPotWithdraw {
skip();
skip(s: string);
setAmount(s: string);
}
declare class Monzo {
static potDeposit: MonzoPotDeposit;
static cardPurchase: MonzoCardPurchase;
static potWithdraw: MonzoPotWithdraw;
static cardPurchaseWithMerchant: MonzoCardPurchase;
}
declare class StripeNewTransfer {
Amount: string;
}
declare class Stripe {
static newTransfer: StripeNewTransfer;
}
declare class MadeDonationObj {
skip();
}
declare class MakeItDonate {
static makeADonation: MadeDonationObj;
}
declare class EwelinkAction {
skip();
skip(s: string);
}
declare class Ewelink {
static switchAction: EwelinkAction;
static plugAction: EwelinkAction;
static plugs3Action: EwelinkAction;
static switches4Action: EwelinkAction;
}
declare class Moretrees {
static plantTreeForSelf: Action;
}
declare class ParticleEvents {
EventContents: string;
}
declare class Particle {
static events: ParticleEvents;
}
declare class dataFromTheBea {
EntryTitle: string;
}
declare class Bea {
static newDataFromTheBea: dataFromTheBea;
}
declare class Github {
static createNewIssueForRepository: Action;
}
declare class PhoneCall {
static callMyPhone: Action;
}
declare class TriggerWithOneTextObj {
TextField: string;
CreatedAt: string;
NumberField: string;
}
declare class GoogleAssistant {
static voiceTriggerWithOneTextIngredient: TriggerWithOneTextObj;
static voiceTriggerWithOneTextAndOneNumberIngredient: TriggerWithOneTextObj;
static voiceTriggerWithOneNumberIngredient: TriggerWithOneTextObj;
}
declare class WeatherObj {
setDate(s: string);
setRain(s: string);
setRainProb(s: string);
}
declare class rainToday {
MeasuredAt: string;
MeasuredRainfallMM: string;
}
declare class Netatmo {
static rainTodayAmount: rainToday;
static rainYesterdayAmount: rainToday;
}
declare class SlackPostChannel {
skip();
skip(s: string);
setMessage(s: string);
setTitle(s: string);
}
declare class Slack {
static postToChannel: SlackPostChannel;
}
declare class readLaterObj {
skip(s: string);
setUrl(s: string);
skip();
}
declare class PocketItem {
Title: string;
Url: string;
Excerpt: string;
Tags: string;
AddedAt: string;
}
declare class Pocket {
static readItLater: readLaterObj;
static newItemAddedPocket: PocketItem;
static newTaggedItemPocket: PocketItem;
}
declare class Line {
static sendMessage: Action;
}
declare class WemoLightSwitch {
static attributeLsOnDiscrete: Action;
}
declare class dominosOrder {
skip();
}
declare class Dominos {
static launchEasyOrder: dominosOrder;
}
declare class GoogleDoc {
Body: string;
setFilename(s: string);
setBody(s: string);
skip();
}
declare class GoogleDocs {
static newDocument: GoogleDoc;
static appendToGoogleDoc: GoogleDoc;
}
declare class LifxColor {
setAdvancedOptions(s: string);
skip();
}
declare class Lifx {
static color: LifxColor;
static turnOn: Action;
static breathe: LifxColor;
static activateScene: Action;
}
declare class NestHome {
HomeName: string;
SetAt: string;
}
declare class NestThermostatPoint {
TemperatureSetpoint: string;
static homeFromAway: NestHome;
skip();
}
declare class NetatmoThermostat {
static getsetpointmanual: NestThermostatPoint;
static setpointmodemanual: NestThermostatPoint;
static homeFromAway: NestHome;
}
declare class DaikinOnControl {
setSetpoint(s: string);
skip();
}
declare class DaikinOffControl {
setSetpoint(s: string);