forked from joakimvonanka/Matrix-Remind-me-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.tsbuildinfo
1131 lines (1131 loc) · 80.3 KB
/
tsconfig.tsbuildinfo
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
{
"program": {
"fileInfos": {
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es5.d.ts": {
"version": "1f753cee573dea40df8a9dc873fef5566957b19ad513874f6643d8dfb14842d0",
"signature": "1f753cee573dea40df8a9dc873fef5566957b19ad513874f6643d8dfb14842d0"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.d.ts": {
"version": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96",
"signature": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2016.d.ts": {
"version": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1",
"signature": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.d.ts": {
"version": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743",
"signature": "459097c7bdd88fc5731367e56591e4f465f2c9de81a35427a7bd473165c34743"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2018.d.ts": {
"version": "2edd3ddf436ef8e12df876dcae4ecd6a8748577944c477bf4b20d5596e0c9843",
"signature": "2edd3ddf436ef8e12df876dcae4ecd6a8748577944c477bf4b20d5596e0c9843"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.d.ts": {
"version": "0fc0f68d3f4d94aa65fab955592e4a9f2066e6f8ee2f66fcc45adf4037fc167b",
"signature": "0fc0f68d3f4d94aa65fab955592e4a9f2066e6f8ee2f66fcc45adf4037fc167b"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.dom.d.ts": {
"version": "973df4e41aea3780ce77073777d37dd5896f684124f4c42409f3a832133837a4",
"signature": "973df4e41aea3780ce77073777d37dd5896f684124f4c42409f3a832133837a4"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.dom.iterable.d.ts": {
"version": "eb843da29336c7d5840bb439b24cf68a4a1652fd01c6e4e66ec74d8b136e944a",
"signature": "eb843da29336c7d5840bb439b24cf68a4a1652fd01c6e4e66ec74d8b136e944a"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.webworker.importscripts.d.ts": {
"version": "fe4e59403e34c7ff747abe4ff6abbc7718229556d7c1a5b93473fb53156c913b",
"signature": "fe4e59403e34c7ff747abe4ff6abbc7718229556d7c1a5b93473fb53156c913b"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.scripthost.d.ts": {
"version": "b9faa17292f17d2ad75e34fac77dd63a6403af1dba02d39cd0cbb9ffdf3de8b9",
"signature": "b9faa17292f17d2ad75e34fac77dd63a6403af1dba02d39cd0cbb9ffdf3de8b9"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.core.d.ts": {
"version": "2a0390a665763bcc90f0670e43c587928d8fefe2a94a11209c1e22cba7b09f52",
"signature": "2a0390a665763bcc90f0670e43c587928d8fefe2a94a11209c1e22cba7b09f52"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.collection.d.ts": {
"version": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0",
"signature": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.generator.d.ts": {
"version": "828413486bdcaa342558e8e4570b1b287b776cb61b4b70b0214bd10c5d9a94c3",
"signature": "828413486bdcaa342558e8e4570b1b287b776cb61b4b70b0214bd10c5d9a94c3"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.iterable.d.ts": {
"version": "6c9f73334f8bf47aea685ca5b46a8f7e992a223e96fbceb030f26a4d2324ba21",
"signature": "6c9f73334f8bf47aea685ca5b46a8f7e992a223e96fbceb030f26a4d2324ba21"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.promise.d.ts": {
"version": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2",
"signature": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.proxy.d.ts": {
"version": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe",
"signature": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.reflect.d.ts": {
"version": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976",
"signature": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.symbol.d.ts": {
"version": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230",
"signature": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": {
"version": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303",
"signature": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2016.array.include.d.ts": {
"version": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0",
"signature": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.object.d.ts": {
"version": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4",
"signature": "ff8ad203e83338289b0f5defc1a5b5c253fb7d251b464db497383f915a0df3f4"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": {
"version": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f",
"signature": "b8667586a618c5cf64523d4e500ae39e781428abfb28f3de441fc66b56144b6f"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.string.d.ts": {
"version": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c",
"signature": "21df2e0059f14dcb4c3a0e125859f6b6ff01332ee24b0065a741d121250bc71c"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.intl.d.ts": {
"version": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6",
"signature": "c1759cb171c7619af0d2234f2f8fb2a871ee88e956e2ed91bb61778e41f272c6"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": {
"version": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46",
"signature": "28569d59e07d4378cb3d54979c4c60f9f06305c9bb6999ffe6cab758957adc46"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": {
"version": "42102aaeb1bfec213be1e9777466a6d551eeba8567fed18c0cdbca8c35e3c6e4",
"signature": "42102aaeb1bfec213be1e9777466a6d551eeba8567fed18c0cdbca8c35e3c6e4"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2018.intl.d.ts": {
"version": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0",
"signature": "1b820b57379c726f94af50cd60053674af53ff9d079c1563cc70071e8b757dd0"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2018.promise.d.ts": {
"version": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62",
"signature": "efe049114bad1035b0aa9a4a0359f50ab776e3897c411521e51d3013079cbd62"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2018.regexp.d.ts": {
"version": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8",
"signature": "e7780d04cd4120ee554c665829db2bbdd6b947cbaa3c150b7d9ea74df3beb2e8"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.array.d.ts": {
"version": "fc7c02b980e7dda0ed14d57ee71705c09efc51ec6286a10b971a25a3bb29262b",
"signature": "fc7c02b980e7dda0ed14d57ee71705c09efc51ec6286a10b971a25a3bb29262b"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.object.d.ts": {
"version": "989b95205f1189943fab0ce12a39c80570edf8f200aca60e0fdc500afc4d5859",
"signature": "989b95205f1189943fab0ce12a39c80570edf8f200aca60e0fdc500afc4d5859"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.string.d.ts": {
"version": "669427ac10ef9f52b6a7a502a66670eaabba675e0a660eb971041bd73c9894e3",
"signature": "669427ac10ef9f52b6a7a502a66670eaabba675e0a660eb971041bd73c9894e3"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.symbol.d.ts": {
"version": "7a842c21e0fe143eb3ad4d689a1470bab5ed9bc7fd7223fe8b56cbae27038d62",
"signature": "7a842c21e0fe143eb3ad4d689a1470bab5ed9bc7fd7223fe8b56cbae27038d62"
},
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.full.d.ts": {
"version": "2e29c91abb0c3a575ff79670fa315b6c09ac7a57a7b42aa509fa17f0a224968f",
"signature": "2e29c91abb0c3a575ff79670fa315b6c09ac7a57a7b42aa509fa17f0a224968f"
},
"/home/anton/matrix_notification/node_modules/@types/node/inspector.d.ts": {
"version": "7e49dbf1543b3ee54853ade4c5e9fa460b6a4eca967efe6bf943e0c505d087ed",
"signature": "7e49dbf1543b3ee54853ade4c5e9fa460b6a4eca967efe6bf943e0c505d087ed"
},
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts": {
"version": "c7d2a06b4c4a725a024b57562644458e82d6143b9087d385dcc3fa548673ce4f",
"signature": "c7d2a06b4c4a725a024b57562644458e82d6143b9087d385dcc3fa548673ce4f"
},
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts": {
"version": "1de0ff6200b92798a5aef43f57029c79dbf69932037dee1c007fdd2c562db258",
"signature": "1de0ff6200b92798a5aef43f57029c79dbf69932037dee1c007fdd2c562db258"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/appservice/Intent.d.ts": {
"version": "b242760df0ff1302843ad478054fc6f52d1eefb7ed8c1f9fad6b4e1d71a4ccff",
"signature": "b242760df0ff1302843ad478054fc6f52d1eefb7ed8c1f9fad6b4e1d71a4ccff"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/appservice/Appservice.d.ts": {
"version": "04b9c381b665b7acfe7c58ec73f47c56a12e3ea83257fdea9c11a510d26478f8",
"signature": "04b9c381b665b7acfe7c58ec73f47c56a12e3ea83257fdea9c11a510d26478f8"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/helpers/RichReply.d.ts": {
"version": "8c91cee257c8d122fcb1dcbb4e24787a429a21703c1fbc92441b977962bfe4aa",
"signature": "8c91cee257c8d122fcb1dcbb4e24787a429a21703c1fbc92441b977962bfe4aa"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/ILogger.d.ts": {
"version": "bae60fa30cc2a4e1b61867c2c00c7aad8c3119e3058c0fd5149c55d2bae79a5c",
"signature": "bae60fa30cc2a4e1b61867c2c00c7aad8c3119e3058c0fd5149c55d2bae79a5c"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/ConsoleLogger.d.ts": {
"version": "e55a142ec6f338170c655e3b8e873ab22d5caae82e0a42695c993ca37985394e",
"signature": "e55a142ec6f338170c655e3b8e873ab22d5caae82e0a42695c993ca37985394e"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/LogService.d.ts": {
"version": "d4fd32ee9ec066e81ac4dd55dc415e63556fe9c5db0d656994682577ea34aea8",
"signature": "d4fd32ee9ec066e81ac4dd55dc415e63556fe9c5db0d656994682577ea34aea8"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/IFilter.d.ts": {
"version": "bc3239a92ec1a5678921464dad6d8a1bf2da55895479c8dd34fb1d4a71a62a17",
"signature": "bc3239a92ec1a5678921464dad6d8a1bf2da55895479c8dd34fb1d4a71a62a17"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IStorageProvider.d.ts": {
"version": "3f7f74708292e92c4c213187db5e45c80bda5fd4578e2f4fe9200028a02bc6b5",
"signature": "3f7f74708292e92c4c213187db5e45c80bda5fd4578e2f4fe9200028a02bc6b5"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/strategies/JoinRoomStrategy.d.ts": {
"version": "d45918d92a564a77645a5a9c8470b36d473e28ebb412ee05a97f4b4cf39d0926",
"signature": "d45918d92a564a77645a5a9c8470b36d473e28ebb412ee05a97f4b4cf39d0926"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/UnstableApis.d.ts": {
"version": "20cea032b0bfcbee4a67c9699a0a92d826c1bfea66e0a03fe12ab2a20f61c114",
"signature": "20cea032b0bfcbee4a67c9699a0a92d826c1bfea66e0a03fe12ab2a20f61c114"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/preprocessors/IPreprocessor.d.ts": {
"version": "dbcfdca62876dc7e29c9fad930a39ecbc839da6f29e4acf7162a20bafd25aeca",
"signature": "dbcfdca62876dc7e29c9fad930a39ecbc839da6f29e4acf7162a20bafd25aeca"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixClient.d.ts": {
"version": "0f30f29eeb3dc7a56193b9ac0a9f0d0a99a73947fccf03b257ade1f27dc8cf49",
"signature": "0f30f29eeb3dc7a56193b9ac0a9f0d0a99a73947fccf03b257ade1f27dc8cf49"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/mixins/AutojoinRoomsMixin.d.ts": {
"version": "aa13794ac502edb1390fff40d86b4353722b0be38fc7a5b568f5ab38293360c1",
"signature": "aa13794ac502edb1390fff40d86b4353722b0be38fc7a5b568f5ab38293360c1"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/mixins/AutojoinUpgradedRoomsMixin.d.ts": {
"version": "04469ade95c472e4d06fd6890b17e984710febf6f2f45b8eebd2bd48e81538c0",
"signature": "04469ade95c472e4d06fd6890b17e984710febf6f2f45b8eebd2bd48e81538c0"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/preprocessors/RichRepliesPreprocessor.d.ts": {
"version": "53976b5f3b3d3e288684e72b27e8c94c3260ad4d85122b67a25fa126bfe9e356",
"signature": "53976b5f3b3d3e288684e72b27e8c94c3260ad4d85122b67a25fa126bfe9e356"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IAppserviceStorageProvider.d.ts": {
"version": "99f34dc2a1bab4abee6e118a22ff68f17668c51a1666bc272ba9b01529e3ddc2",
"signature": "99f34dc2a1bab4abee6e118a22ff68f17668c51a1666bc272ba9b01529e3ddc2"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/MemoryStorageProvider.d.ts": {
"version": "bcbabc312ee36bd0540af5ce37ac18035a89778ea3ed8f97d4a5136d4cdad805",
"signature": "bcbabc312ee36bd0540af5ce37ac18035a89778ea3ed8f97d4a5136d4cdad805"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/SimpleFsStorageProvider.d.ts": {
"version": "e0c32b4b2303135bb0b8863491428f38423bb95f56678c9890dd009e25c4982d",
"signature": "e0c32b4b2303135bb0b8863491428f38423bb95f56678c9890dd009e25c4982d"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/strategies/AppserviceJoinRoomStrategy.d.ts": {
"version": "9e8126f1a6504ee59f5142ed32a5b9dca1b7424c61c07134025cea8e8b28cf1c",
"signature": "9e8126f1a6504ee59f5142ed32a5b9dca1b7424c61c07134025cea8e8b28cf1c"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixAuth.d.ts": {
"version": "9ee224f3d5a319c297b8e62f45a616512c5d4ee209144bc61af841a0c4368536",
"signature": "9ee224f3d5a319c297b8e62f45a616512c5d4ee209144bc61af841a0c4368536"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/request.d.ts": {
"version": "821e1aa8c7a2517bb75eb0e09b92ba712fd5e151c55bba53677bbe2729bafdaa",
"signature": "821e1aa8c7a2517bb75eb0e09b92ba712fd5e151c55bba53677bbe2729bafdaa"
},
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/index.d.ts": {
"version": "dd13b4c56b27545dfbaa80b11864e090fed12ad01b1249a0572aefc5dbc50f9f",
"signature": "dd13b4c56b27545dfbaa80b11864e090fed12ad01b1249a0572aefc5dbc50f9f"
},
"/home/anton/matrix_notification/node_modules/@types/linkify-it/index.d.ts": {
"version": "394c967330bc37c409abf2d7ab374975158a241ac1d7368a1b998c0206aa1f2e",
"signature": "394c967330bc37c409abf2d7ab374975158a241ac1d7368a1b998c0206aa1f2e"
},
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/token.d.ts": {
"version": "9ff77f7cddf7f2d18d581befa02be977e929f9bba2945975cd475c5ea1121779",
"signature": "9ff77f7cddf7f2d18d581befa02be977e929f9bba2945975cd475c5ea1121779"
},
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts": {
"version": "b4b5118a66409a1f038317a7d84c9f2a40e59073cfd1812e8f25108b49e5d090",
"signature": "b4b5118a66409a1f038317a7d84c9f2a40e59073cfd1812e8f25108b49e5d090"
},
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts": {
"version": "4477c34fb65c298de575901e09c1a07bb72f256e035534b8d8c36cb9a88ab26f",
"signature": "4477c34fb65c298de575901e09c1a07bb72f256e035534b8d8c36cb9a88ab26f"
},
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts": {
"version": "38c22c0a1eef86d85cfa65f5595518000737bcd375e144d989a244fbb96fbc8d",
"signature": "38c22c0a1eef86d85cfa65f5595518000737bcd375e144d989a244fbb96fbc8d"
},
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/ruler.d.ts": {
"version": "d61c957e12422610f841dc43acce323fe465efb2f93e550fb1b8067b5d912d15",
"signature": "d61c957e12422610f841dc43acce323fe465efb2f93e550fb1b8067b5d912d15"
},
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/parser_core.d.ts": {
"version": "2cd94032afa12afa1b30c60a1d4c5f8eec60bfe1685db515fb5df91554d0e92d",
"signature": "2cd94032afa12afa1b30c60a1d4c5f8eec60bfe1685db515fb5df91554d0e92d"
},
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/parser_block.d.ts": {
"version": "233ee9b386332a630eb490287b2c96a0aaee89345746db577360882f2ea365c0",
"signature": "233ee9b386332a630eb490287b2c96a0aaee89345746db577360882f2ea365c0"
},
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/parser_inline.d.ts": {
"version": "f6b1170ee583cba2a4c585fae21ca9bb92e23a8b6bf1b9f432a8d567e5858dfc",
"signature": "f6b1170ee583cba2a4c585fae21ca9bb92e23a8b6bf1b9f432a8d567e5858dfc"
},
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/renderer.d.ts": {
"version": "6ab11a659321ed2a2f7cadb2e3dc610f65fbc20726b0989cff60811f6576e70c",
"signature": "6ab11a659321ed2a2f7cadb2e3dc610f65fbc20726b0989cff60811f6576e70c"
},
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/index.d.ts": {
"version": "2169b8338a415aa09345aa35ac01e290bc04ee84474b6ec0cb17a0dde433ee27",
"signature": "2169b8338a415aa09345aa35ac01e290bc04ee84474b6ec0cb17a0dde433ee27"
},
"/home/anton/matrix_notification/node_modules/@types/markdown-it/index.d.ts": {
"version": "cf963f97022b2f1092e68eaf0b9bc7c1396af8fd943a35ca7fd1a74625013f6a",
"signature": "cf963f97022b2f1092e68eaf0b9bc7c1396af8fd943a35ca7fd1a74625013f6a"
},
"/home/anton/matrix_notification/src/notificationmap.ts": {
"version": "c1834ee56cb255d4f5762ba3f50441438742b2435471308af6d703b0bee81bbb",
"signature": "b06bf772234b922bbe46ad4d4fd024a55b1698a6b302fb346ede1e8153b918bd"
},
"/home/anton/matrix_notification/src/notif_bot.ts": {
"version": "ad9f38dfcd063035eaed82ef17e2656bb0df1d02d41404b733d085b97ed07c74",
"signature": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"
}
},
"options": {
"incremental": true,
"target": 6,
"module": 1,
"outDir": "/home/anton/matrix_notification/lib",
"rootDir": "/home/anton/matrix_notification/src",
"composite": true,
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true,
"configFilePath": "/home/anton/matrix_notification/tsconfig.json"
},
"referencedMap": {
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es5.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2016.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2018.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.dom.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.dom.iterable.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.webworker.importscripts.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.scripthost.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.core.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.collection.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.generator.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.iterable.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.promise.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.proxy.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.reflect.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.symbol.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2016.array.include.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.object.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.string.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.intl.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2018.intl.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2018.promise.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2018.regexp.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.array.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.object.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.string.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.symbol.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.full.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/node/inspector.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/inspector.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/appservice/Intent.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/appservice/Appservice.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/appservice/Appservice.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/appservice/Intent.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/helpers/RichReply.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/ILogger.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/ConsoleLogger.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/ILogger.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/LogService.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/ILogger.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/IFilter.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IStorageProvider.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/IFilter.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/strategies/JoinRoomStrategy.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/UnstableApis.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixClient.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/preprocessors/IPreprocessor.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixClient.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixClient.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/strategies/JoinRoomStrategy.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/UnstableApis.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/preprocessors/IPreprocessor.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/mixins/AutojoinRoomsMixin.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixClient.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/mixins/AutojoinUpgradedRoomsMixin.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixClient.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/preprocessors/RichRepliesPreprocessor.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixClient.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/preprocessors/IPreprocessor.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IAppserviceStorageProvider.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/MemoryStorageProvider.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/IFilter.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IAppserviceStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/SimpleFsStorageProvider.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/IFilter.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IAppserviceStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/strategies/AppserviceJoinRoomStrategy.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/strategies/JoinRoomStrategy.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixAuth.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixClient.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/request.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/index.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/appservice/Appservice.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/appservice/Intent.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/helpers/RichReply.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/ConsoleLogger.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/ILogger.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/LogService.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/mixins/AutojoinRoomsMixin.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/mixins/AutojoinUpgradedRoomsMixin.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/preprocessors/IPreprocessor.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/preprocessors/RichRepliesPreprocessor.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IAppserviceStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/MemoryStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/SimpleFsStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/strategies/AppserviceJoinRoomStrategy.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/strategies/JoinRoomStrategy.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/IFilter.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixClient.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixAuth.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/UnstableApis.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/request.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/linkify-it/index.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/token.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/token.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/token.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/token.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/ruler.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/parser_core.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/ruler.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/token.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/parser_block.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/token.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/parser_inline.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/token.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/renderer.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/token.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/index.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/linkify-it/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/parser_core.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/parser_block.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/parser_inline.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/renderer.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/ruler.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/token.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/markdown-it/index.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/src/notificationmap.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/src/notif_bot.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/index.d.ts",
"/home/anton/matrix_notification/src/notificationmap.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
]
},
"exportedModulesMap": {
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es5.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2016.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2018.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.dom.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.dom.iterable.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.webworker.importscripts.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.scripthost.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.core.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.collection.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.generator.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.iterable.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.promise.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.proxy.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.reflect.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.symbol.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2016.array.include.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.object.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.string.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.intl.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2018.intl.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2018.promise.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2018.regexp.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.array.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.object.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.string.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.symbol.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/typescript/lib/lib.es2019.full.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/node/inspector.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/inspector.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/appservice/Intent.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/appservice/Appservice.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/appservice/Appservice.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/appservice/Intent.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/helpers/RichReply.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/ILogger.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/ConsoleLogger.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/ILogger.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/LogService.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/ILogger.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/IFilter.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IStorageProvider.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/IFilter.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/strategies/JoinRoomStrategy.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/UnstableApis.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixClient.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/preprocessors/IPreprocessor.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixClient.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixClient.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/strategies/JoinRoomStrategy.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/UnstableApis.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/preprocessors/IPreprocessor.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/mixins/AutojoinRoomsMixin.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixClient.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/mixins/AutojoinUpgradedRoomsMixin.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixClient.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/preprocessors/RichRepliesPreprocessor.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixClient.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/preprocessors/IPreprocessor.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IAppserviceStorageProvider.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/MemoryStorageProvider.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/IFilter.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IAppserviceStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/SimpleFsStorageProvider.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/IFilter.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IAppserviceStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/strategies/AppserviceJoinRoomStrategy.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/strategies/JoinRoomStrategy.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixAuth.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixClient.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/request.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/index.d.ts": [
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/appservice/Appservice.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/appservice/Intent.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/helpers/RichReply.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/ConsoleLogger.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/ILogger.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/logging/LogService.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/mixins/AutojoinRoomsMixin.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/mixins/AutojoinUpgradedRoomsMixin.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/preprocessors/IPreprocessor.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/preprocessors/RichRepliesPreprocessor.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IAppserviceStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/IStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/MemoryStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/storage/SimpleFsStorageProvider.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/strategies/AppserviceJoinRoomStrategy.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/strategies/JoinRoomStrategy.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/IFilter.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixClient.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/MatrixAuth.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/UnstableApis.d.ts",
"/home/anton/matrix_notification/node_modules/matrix-bot-sdk/lib/request.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/linkify-it/index.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/token.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/token.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/token.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts": [
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/index.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts",
"/home/anton/matrix_notification/node_modules/@types/markdown-it/lib/token.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/base.d.ts",
"/home/anton/matrix_notification/node_modules/@types/node/ts3.2/index.d.ts"
],