pmcf 3.20.1 → 3.20.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/services/systemd-resolved.mjs +34 -6
- package/types/base.d.mts +2 -1
- package/types/cluster.d.mts +36 -18
- package/types/extra-source-service.d.mts +80 -40
- package/types/host.d.mts +16 -8
- package/types/location.d.mts +28 -14
- package/types/network-interfaces/ethernet.d.mts +96 -48
- package/types/network-interfaces/loopback.d.mts +92 -46
- package/types/network-interfaces/network-interface.d.mts +92 -46
- package/types/network-interfaces/tun.d.mts +92 -46
- package/types/network-interfaces/wireguard.d.mts +92 -46
- package/types/network-interfaces/wlan.d.mts +142 -71
- package/types/network-support.d.mts +16 -8
- package/types/network.d.mts +56 -28
- package/types/owner.d.mts +14 -7
- package/types/service.d.mts +46 -23
- package/types/services/bind.d.mts +114 -57
- package/types/services/chrony.d.mts +100 -50
- package/types/services/headscale.d.mts +60 -30
- package/types/services/influxdb.d.mts +62 -31
- package/types/services/kea.d.mts +70 -35
- package/types/services/mosquitto.d.mts +64 -32
- package/types/services/openldap.d.mts +60 -30
- package/types/services/systemd-journal-remote.d.mts +80 -40
- package/types/services/systemd-journal-upload.d.mts +70 -35
- package/types/services/systemd-journal.d.mts +106 -53
- package/types/services/systemd-resolved.d.mts +117 -60
- package/types/services/systemd-timesyncd.d.mts +100 -50
- package/types/services/tailscale.d.mts +60 -30
- package/types/subnet.d.mts +2 -1
- package/types/utils.d.mts +1 -1
|
@@ -19,7 +19,8 @@ export namespace EthernetNetworkInterfaceTypeDefinition {
|
|
|
19
19
|
default?: any;
|
|
20
20
|
set?: Function;
|
|
21
21
|
get?: Function;
|
|
22
|
-
|
|
22
|
+
toInternal?: Function;
|
|
23
|
+
toExternal?: Function;
|
|
23
24
|
values?: Set<any>;
|
|
24
25
|
externalName?: string;
|
|
25
26
|
env?: string[] | string;
|
|
@@ -52,7 +53,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
52
53
|
default?: any;
|
|
53
54
|
set?: Function;
|
|
54
55
|
get?: Function;
|
|
55
|
-
|
|
56
|
+
toInternal?: Function;
|
|
57
|
+
toExternal?: Function;
|
|
56
58
|
values?: Set<any>;
|
|
57
59
|
externalName?: string;
|
|
58
60
|
env?: string[] | string;
|
|
@@ -72,7 +74,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
72
74
|
default?: any;
|
|
73
75
|
set?: Function;
|
|
74
76
|
get?: Function;
|
|
75
|
-
|
|
77
|
+
toInternal?: Function;
|
|
78
|
+
toExternal?: Function;
|
|
76
79
|
values?: Set<any>;
|
|
77
80
|
externalName?: string;
|
|
78
81
|
env?: string[] | string;
|
|
@@ -104,7 +107,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
104
107
|
default?: any;
|
|
105
108
|
set?: Function;
|
|
106
109
|
get?: Function;
|
|
107
|
-
|
|
110
|
+
toInternal?: Function;
|
|
111
|
+
toExternal?: Function;
|
|
108
112
|
values?: Set<any>;
|
|
109
113
|
externalName?: string;
|
|
110
114
|
env?: string[] | string;
|
|
@@ -124,7 +128,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
124
128
|
default?: any;
|
|
125
129
|
set?: Function;
|
|
126
130
|
get?: Function;
|
|
127
|
-
|
|
131
|
+
toInternal?: Function;
|
|
132
|
+
toExternal?: Function;
|
|
128
133
|
values?: Set<any>;
|
|
129
134
|
externalName?: string;
|
|
130
135
|
env?: string[] | string;
|
|
@@ -144,7 +149,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
144
149
|
default?: any;
|
|
145
150
|
set?: Function;
|
|
146
151
|
get?: Function;
|
|
147
|
-
|
|
152
|
+
toInternal?: Function;
|
|
153
|
+
toExternal?: Function;
|
|
148
154
|
values?: Set<any>;
|
|
149
155
|
externalName?: string;
|
|
150
156
|
env?: string[] | string;
|
|
@@ -172,7 +178,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
172
178
|
default?: any;
|
|
173
179
|
set?: Function;
|
|
174
180
|
get?: Function;
|
|
175
|
-
|
|
181
|
+
toInternal?: Function;
|
|
182
|
+
toExternal?: Function;
|
|
176
183
|
values?: Set<any>;
|
|
177
184
|
externalName?: string;
|
|
178
185
|
env?: string[] | string;
|
|
@@ -194,7 +201,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
194
201
|
default?: any;
|
|
195
202
|
set?: Function;
|
|
196
203
|
get?: Function;
|
|
197
|
-
|
|
204
|
+
toInternal?: Function;
|
|
205
|
+
toExternal?: Function;
|
|
198
206
|
values?: Set<any>;
|
|
199
207
|
externalName?: string;
|
|
200
208
|
env?: string[] | string;
|
|
@@ -220,7 +228,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
220
228
|
default?: any;
|
|
221
229
|
set?: Function;
|
|
222
230
|
get?: Function;
|
|
223
|
-
|
|
231
|
+
toInternal?: Function;
|
|
232
|
+
toExternal?: Function;
|
|
224
233
|
values?: Set<any>;
|
|
225
234
|
externalName?: string;
|
|
226
235
|
env?: string[] | string;
|
|
@@ -240,7 +249,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
240
249
|
default?: any;
|
|
241
250
|
set?: Function;
|
|
242
251
|
get?: Function;
|
|
243
|
-
|
|
252
|
+
toInternal?: Function;
|
|
253
|
+
toExternal?: Function;
|
|
244
254
|
values?: Set<any>;
|
|
245
255
|
externalName?: string;
|
|
246
256
|
env?: string[] | string;
|
|
@@ -264,7 +274,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
264
274
|
default?: any;
|
|
265
275
|
set?: Function;
|
|
266
276
|
get?: Function;
|
|
267
|
-
|
|
277
|
+
toInternal?: Function;
|
|
278
|
+
toExternal?: Function;
|
|
268
279
|
values?: Set<any>;
|
|
269
280
|
externalName?: string;
|
|
270
281
|
env?: string[] | string;
|
|
@@ -284,7 +295,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
284
295
|
default?: any;
|
|
285
296
|
set?: Function;
|
|
286
297
|
get?: Function;
|
|
287
|
-
|
|
298
|
+
toInternal?: Function;
|
|
299
|
+
toExternal?: Function;
|
|
288
300
|
values?: Set<any>;
|
|
289
301
|
externalName?: string;
|
|
290
302
|
env?: string[] | string;
|
|
@@ -305,7 +317,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
305
317
|
default?: any;
|
|
306
318
|
set?: Function;
|
|
307
319
|
get?: Function;
|
|
308
|
-
|
|
320
|
+
toInternal?: Function;
|
|
321
|
+
toExternal?: Function;
|
|
309
322
|
externalName?: string;
|
|
310
323
|
env?: string[] | string;
|
|
311
324
|
additionalValues?: object;
|
|
@@ -325,7 +338,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
325
338
|
default?: any;
|
|
326
339
|
set?: Function;
|
|
327
340
|
get?: Function;
|
|
328
|
-
|
|
341
|
+
toInternal?: Function;
|
|
342
|
+
toExternal?: Function;
|
|
329
343
|
externalName?: string;
|
|
330
344
|
env?: string[] | string;
|
|
331
345
|
additionalValues?: object;
|
|
@@ -345,7 +359,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
345
359
|
default?: any;
|
|
346
360
|
set?: Function;
|
|
347
361
|
get?: Function;
|
|
348
|
-
|
|
362
|
+
toInternal?: Function;
|
|
363
|
+
toExternal?: Function;
|
|
349
364
|
externalName?: string;
|
|
350
365
|
env?: string[] | string;
|
|
351
366
|
additionalValues?: object;
|
|
@@ -367,7 +382,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
367
382
|
default?: any;
|
|
368
383
|
set?: Function;
|
|
369
384
|
get?: Function;
|
|
370
|
-
|
|
385
|
+
toInternal?: Function;
|
|
386
|
+
toExternal?: Function;
|
|
371
387
|
values?: Set<any>;
|
|
372
388
|
externalName?: string;
|
|
373
389
|
env?: string[] | string;
|
|
@@ -387,7 +403,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
387
403
|
description?: string;
|
|
388
404
|
set?: Function;
|
|
389
405
|
get?: Function;
|
|
390
|
-
|
|
406
|
+
toInternal?: Function;
|
|
407
|
+
toExternal?: Function;
|
|
391
408
|
values?: Set<any>;
|
|
392
409
|
externalName?: string;
|
|
393
410
|
env?: string[] | string;
|
|
@@ -408,7 +425,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
408
425
|
default?: any;
|
|
409
426
|
set?: Function;
|
|
410
427
|
get?: Function;
|
|
411
|
-
|
|
428
|
+
toInternal?: Function;
|
|
429
|
+
toExternal?: Function;
|
|
412
430
|
values?: Set<any>;
|
|
413
431
|
externalName?: string;
|
|
414
432
|
env?: string[] | string;
|
|
@@ -434,7 +452,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
434
452
|
default?: any;
|
|
435
453
|
set?: Function;
|
|
436
454
|
get?: Function;
|
|
437
|
-
|
|
455
|
+
toInternal?: Function;
|
|
456
|
+
toExternal?: Function;
|
|
438
457
|
externalName?: string;
|
|
439
458
|
env?: string[] | string;
|
|
440
459
|
additionalValues?: object;
|
|
@@ -454,7 +473,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
454
473
|
default?: any;
|
|
455
474
|
set?: Function;
|
|
456
475
|
get?: Function;
|
|
457
|
-
|
|
476
|
+
toInternal?: Function;
|
|
477
|
+
toExternal?: Function;
|
|
458
478
|
externalName?: string;
|
|
459
479
|
env?: string[] | string;
|
|
460
480
|
additionalValues?: object;
|
|
@@ -474,7 +494,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
474
494
|
default?: any;
|
|
475
495
|
set?: Function;
|
|
476
496
|
get?: Function;
|
|
477
|
-
|
|
497
|
+
toInternal?: Function;
|
|
498
|
+
toExternal?: Function;
|
|
478
499
|
externalName?: string;
|
|
479
500
|
env?: string[] | string;
|
|
480
501
|
additionalValues?: object;
|
|
@@ -496,7 +517,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
496
517
|
default?: any;
|
|
497
518
|
set?: Function;
|
|
498
519
|
get?: Function;
|
|
499
|
-
|
|
520
|
+
toInternal?: Function;
|
|
521
|
+
toExternal?: Function;
|
|
500
522
|
values?: Set<any>;
|
|
501
523
|
externalName?: string;
|
|
502
524
|
env?: string[] | string;
|
|
@@ -516,7 +538,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
516
538
|
description?: string;
|
|
517
539
|
set?: Function;
|
|
518
540
|
get?: Function;
|
|
519
|
-
|
|
541
|
+
toInternal?: Function;
|
|
542
|
+
toExternal?: Function;
|
|
520
543
|
values?: Set<any>;
|
|
521
544
|
externalName?: string;
|
|
522
545
|
env?: string[] | string;
|
|
@@ -536,7 +559,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
536
559
|
default?: any;
|
|
537
560
|
set?: Function;
|
|
538
561
|
get?: Function;
|
|
539
|
-
|
|
562
|
+
toInternal?: Function;
|
|
563
|
+
toExternal?: Function;
|
|
540
564
|
values?: Set<any>;
|
|
541
565
|
externalName?: string;
|
|
542
566
|
env?: string[] | string;
|
|
@@ -567,7 +591,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
567
591
|
default?: any;
|
|
568
592
|
set?: Function;
|
|
569
593
|
get?: Function;
|
|
570
|
-
|
|
594
|
+
toInternal?: Function;
|
|
595
|
+
toExternal?: Function;
|
|
571
596
|
values?: Set<any>;
|
|
572
597
|
externalName?: string;
|
|
573
598
|
env?: string[] | string;
|
|
@@ -587,7 +612,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
587
612
|
default?: any;
|
|
588
613
|
set?: Function;
|
|
589
614
|
get?: Function;
|
|
590
|
-
|
|
615
|
+
toInternal?: Function;
|
|
616
|
+
toExternal?: Function;
|
|
591
617
|
values?: Set<any>;
|
|
592
618
|
externalName?: string;
|
|
593
619
|
env?: string[] | string;
|
|
@@ -619,7 +645,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
619
645
|
default?: any;
|
|
620
646
|
set?: Function;
|
|
621
647
|
get?: Function;
|
|
622
|
-
|
|
648
|
+
toInternal?: Function;
|
|
649
|
+
toExternal?: Function;
|
|
623
650
|
values?: Set<any>;
|
|
624
651
|
externalName?: string;
|
|
625
652
|
env?: string[] | string;
|
|
@@ -639,7 +666,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
639
666
|
default?: any;
|
|
640
667
|
set?: Function;
|
|
641
668
|
get?: Function;
|
|
642
|
-
|
|
669
|
+
toInternal?: Function;
|
|
670
|
+
toExternal?: Function;
|
|
643
671
|
values?: Set<any>;
|
|
644
672
|
externalName?: string;
|
|
645
673
|
env?: string[] | string;
|
|
@@ -659,7 +687,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
659
687
|
default?: any;
|
|
660
688
|
set?: Function;
|
|
661
689
|
get?: Function;
|
|
662
|
-
|
|
690
|
+
toInternal?: Function;
|
|
691
|
+
toExternal?: Function;
|
|
663
692
|
values?: Set<any>;
|
|
664
693
|
externalName?: string;
|
|
665
694
|
env?: string[] | string;
|
|
@@ -687,7 +716,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
687
716
|
default?: any;
|
|
688
717
|
set?: Function;
|
|
689
718
|
get?: Function;
|
|
690
|
-
|
|
719
|
+
toInternal?: Function;
|
|
720
|
+
toExternal?: Function;
|
|
691
721
|
values?: Set<any>;
|
|
692
722
|
externalName?: string;
|
|
693
723
|
env?: string[] | string;
|
|
@@ -709,7 +739,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
709
739
|
default?: any;
|
|
710
740
|
set?: Function;
|
|
711
741
|
get?: Function;
|
|
712
|
-
|
|
742
|
+
toInternal?: Function;
|
|
743
|
+
toExternal?: Function;
|
|
713
744
|
values?: Set<any>;
|
|
714
745
|
externalName?: string;
|
|
715
746
|
env?: string[] | string;
|
|
@@ -735,7 +766,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
735
766
|
default?: any;
|
|
736
767
|
set?: Function;
|
|
737
768
|
get?: Function;
|
|
738
|
-
|
|
769
|
+
toInternal?: Function;
|
|
770
|
+
toExternal?: Function;
|
|
739
771
|
values?: Set<any>;
|
|
740
772
|
externalName?: string;
|
|
741
773
|
env?: string[] | string;
|
|
@@ -755,7 +787,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
755
787
|
default?: any;
|
|
756
788
|
set?: Function;
|
|
757
789
|
get?: Function;
|
|
758
|
-
|
|
790
|
+
toInternal?: Function;
|
|
791
|
+
toExternal?: Function;
|
|
759
792
|
values?: Set<any>;
|
|
760
793
|
externalName?: string;
|
|
761
794
|
env?: string[] | string;
|
|
@@ -779,7 +812,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
779
812
|
default?: any;
|
|
780
813
|
set?: Function;
|
|
781
814
|
get?: Function;
|
|
782
|
-
|
|
815
|
+
toInternal?: Function;
|
|
816
|
+
toExternal?: Function;
|
|
783
817
|
values?: Set<any>;
|
|
784
818
|
externalName?: string;
|
|
785
819
|
env?: string[] | string;
|
|
@@ -799,7 +833,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
799
833
|
default?: any;
|
|
800
834
|
set?: Function;
|
|
801
835
|
get?: Function;
|
|
802
|
-
|
|
836
|
+
toInternal?: Function;
|
|
837
|
+
toExternal?: Function;
|
|
803
838
|
values?: Set<any>;
|
|
804
839
|
externalName?: string;
|
|
805
840
|
env?: string[] | string;
|
|
@@ -820,7 +855,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
820
855
|
default?: any;
|
|
821
856
|
set?: Function;
|
|
822
857
|
get?: Function;
|
|
823
|
-
|
|
858
|
+
toInternal?: Function;
|
|
859
|
+
toExternal?: Function;
|
|
824
860
|
externalName?: string;
|
|
825
861
|
env?: string[] | string;
|
|
826
862
|
additionalValues?: object;
|
|
@@ -840,7 +876,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
840
876
|
default?: any;
|
|
841
877
|
set?: Function;
|
|
842
878
|
get?: Function;
|
|
843
|
-
|
|
879
|
+
toInternal?: Function;
|
|
880
|
+
toExternal?: Function;
|
|
844
881
|
externalName?: string;
|
|
845
882
|
env?: string[] | string;
|
|
846
883
|
additionalValues?: object;
|
|
@@ -860,7 +897,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
860
897
|
default?: any;
|
|
861
898
|
set?: Function;
|
|
862
899
|
get?: Function;
|
|
863
|
-
|
|
900
|
+
toInternal?: Function;
|
|
901
|
+
toExternal?: Function;
|
|
864
902
|
externalName?: string;
|
|
865
903
|
env?: string[] | string;
|
|
866
904
|
additionalValues?: object;
|
|
@@ -882,7 +920,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
882
920
|
default?: any;
|
|
883
921
|
set?: Function;
|
|
884
922
|
get?: Function;
|
|
885
|
-
|
|
923
|
+
toInternal?: Function;
|
|
924
|
+
toExternal?: Function;
|
|
886
925
|
values?: Set<any>;
|
|
887
926
|
externalName?: string;
|
|
888
927
|
env?: string[] | string;
|
|
@@ -902,7 +941,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
902
941
|
description?: string;
|
|
903
942
|
set?: Function;
|
|
904
943
|
get?: Function;
|
|
905
|
-
|
|
944
|
+
toInternal?: Function;
|
|
945
|
+
toExternal?: Function;
|
|
906
946
|
values?: Set<any>;
|
|
907
947
|
externalName?: string;
|
|
908
948
|
env?: string[] | string;
|
|
@@ -923,7 +963,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
923
963
|
default?: any;
|
|
924
964
|
set?: Function;
|
|
925
965
|
get?: Function;
|
|
926
|
-
|
|
966
|
+
toInternal?: Function;
|
|
967
|
+
toExternal?: Function;
|
|
927
968
|
values?: Set<any>;
|
|
928
969
|
externalName?: string;
|
|
929
970
|
env?: string[] | string;
|
|
@@ -949,7 +990,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
949
990
|
default?: any;
|
|
950
991
|
set?: Function;
|
|
951
992
|
get?: Function;
|
|
952
|
-
|
|
993
|
+
toInternal?: Function;
|
|
994
|
+
toExternal?: Function;
|
|
953
995
|
externalName?: string;
|
|
954
996
|
env?: string[] | string;
|
|
955
997
|
additionalValues?: object;
|
|
@@ -969,7 +1011,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
969
1011
|
default?: any;
|
|
970
1012
|
set?: Function;
|
|
971
1013
|
get?: Function;
|
|
972
|
-
|
|
1014
|
+
toInternal?: Function;
|
|
1015
|
+
toExternal?: Function;
|
|
973
1016
|
externalName?: string;
|
|
974
1017
|
env?: string[] | string;
|
|
975
1018
|
additionalValues?: object;
|
|
@@ -989,7 +1032,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
989
1032
|
default?: any;
|
|
990
1033
|
set?: Function;
|
|
991
1034
|
get?: Function;
|
|
992
|
-
|
|
1035
|
+
toInternal?: Function;
|
|
1036
|
+
toExternal?: Function;
|
|
993
1037
|
externalName?: string;
|
|
994
1038
|
env?: string[] | string;
|
|
995
1039
|
additionalValues?: object;
|
|
@@ -1011,7 +1055,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
1011
1055
|
default?: any;
|
|
1012
1056
|
set?: Function;
|
|
1013
1057
|
get?: Function;
|
|
1014
|
-
|
|
1058
|
+
toInternal?: Function;
|
|
1059
|
+
toExternal?: Function;
|
|
1015
1060
|
values?: Set<any>;
|
|
1016
1061
|
externalName?: string;
|
|
1017
1062
|
env?: string[] | string;
|
|
@@ -1031,7 +1076,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
1031
1076
|
description?: string;
|
|
1032
1077
|
set?: Function;
|
|
1033
1078
|
get?: Function;
|
|
1034
|
-
|
|
1079
|
+
toInternal?: Function;
|
|
1080
|
+
toExternal?: Function;
|
|
1035
1081
|
values?: Set<any>;
|
|
1036
1082
|
externalName?: string;
|
|
1037
1083
|
env?: string[] | string;
|
|
@@ -1051,7 +1097,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
1051
1097
|
default?: any;
|
|
1052
1098
|
set?: Function;
|
|
1053
1099
|
get?: Function;
|
|
1054
|
-
|
|
1100
|
+
toInternal?: Function;
|
|
1101
|
+
toExternal?: Function;
|
|
1055
1102
|
values?: Set<any>;
|
|
1056
1103
|
externalName?: string;
|
|
1057
1104
|
env?: string[] | string;
|
|
@@ -1077,7 +1124,8 @@ export class EthernetNetworkInterface extends NetworkInterface {
|
|
|
1077
1124
|
default?: any;
|
|
1078
1125
|
set?: Function;
|
|
1079
1126
|
get?: Function;
|
|
1080
|
-
|
|
1127
|
+
toInternal?: Function;
|
|
1128
|
+
toExternal?: Function;
|
|
1081
1129
|
values?: Set<any>;
|
|
1082
1130
|
externalName?: string;
|
|
1083
1131
|
env?: string[] | string;
|