pmcf 3.4.0 → 3.4.1
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/base.mjs +14 -7
- package/src/host.mjs +20 -15
- package/src/location.mjs +2 -2
- package/src/network-interfaces/network-interface.mjs +4 -4
- package/src/network-support.mjs +16 -10
- package/src/owner.mjs +11 -7
- package/src/service.mjs +11 -6
- package/src/services/bind.mjs +9 -9
- package/src/services/kea.mjs +9 -8
- package/src/services/openldap.mjs +4 -4
- package/src/services/systemd-journal-upload.mjs +2 -2
- package/src/subnet.mjs +3 -3
- package/types/base.d.mts +9 -9
- package/types/cluster.d.mts +92 -105
- package/types/extra-source-service.d.mts +34 -47
- package/types/host.d.mts +58 -71
- package/types/location.d.mts +76 -76
- package/types/network-interfaces/ethernet.d.mts +50 -50
- package/types/network-interfaces/loopback.d.mts +50 -50
- package/types/network-interfaces/network-interface.d.mts +50 -50
- package/types/network-interfaces/wireguard.d.mts +50 -50
- package/types/network-interfaces/wlan.d.mts +75 -75
- package/types/network-support.d.mts +16 -16
- package/types/network.d.mts +34 -34
- package/types/owner.d.mts +34 -34
- package/types/root.d.mts +76 -76
- package/types/service.d.mts +70 -108
- package/types/services/bind.d.mts +85 -110
- package/types/services/chrony.d.mts +68 -94
- package/types/services/influxdb.d.mts +68 -94
- package/types/services/kea.d.mts +71 -97
- package/types/services/mosquitto.d.mts +68 -94
- package/types/services/openldap.d.mts +68 -94
- package/types/services/systemd-journal-remote.d.mts +68 -94
- package/types/services/systemd-journal-upload.d.mts +68 -94
- package/types/services/systemd-journal.d.mts +68 -94
- package/types/services/systemd-resolved.d.mts +68 -94
- package/types/services/systemd-timesyncd.d.mts +68 -94
- package/types/subnet.d.mts +1 -1
|
@@ -16,9 +16,9 @@ export class SystemdJournalUploadService extends Service {
|
|
|
16
16
|
};
|
|
17
17
|
type: import("pacc").AttributeDefinition;
|
|
18
18
|
name: {
|
|
19
|
-
isKey: boolean;
|
|
20
19
|
writable: boolean;
|
|
21
20
|
type: string;
|
|
21
|
+
isKey: boolean;
|
|
22
22
|
mandatory: boolean;
|
|
23
23
|
collection: boolean;
|
|
24
24
|
private?: boolean;
|
|
@@ -100,18 +100,18 @@ export class SystemdJournalUploadService extends Service {
|
|
|
100
100
|
env?: string[] | string;
|
|
101
101
|
};
|
|
102
102
|
tags: {
|
|
103
|
-
collection: boolean;
|
|
104
103
|
writable: boolean;
|
|
104
|
+
collection: boolean;
|
|
105
105
|
type: string;
|
|
106
106
|
isKey: boolean;
|
|
107
107
|
mandatory: boolean;
|
|
108
|
-
private
|
|
109
|
-
depends
|
|
110
|
-
description
|
|
111
|
-
default
|
|
112
|
-
set
|
|
113
|
-
get
|
|
114
|
-
env
|
|
108
|
+
private: boolean;
|
|
109
|
+
depends: string;
|
|
110
|
+
description: string;
|
|
111
|
+
default: any;
|
|
112
|
+
set: Function;
|
|
113
|
+
get: Function;
|
|
114
|
+
env: string[] | string;
|
|
115
115
|
};
|
|
116
116
|
};
|
|
117
117
|
};
|
|
@@ -147,18 +147,18 @@ export class SystemdJournalUploadService extends Service {
|
|
|
147
147
|
env?: string[] | string;
|
|
148
148
|
};
|
|
149
149
|
systemd: {
|
|
150
|
-
collection: boolean;
|
|
151
150
|
writable: boolean;
|
|
151
|
+
collection: boolean;
|
|
152
152
|
type: string;
|
|
153
153
|
isKey: boolean;
|
|
154
154
|
mandatory: boolean;
|
|
155
|
-
private
|
|
156
|
-
depends
|
|
157
|
-
description
|
|
158
|
-
default
|
|
159
|
-
set
|
|
160
|
-
get
|
|
161
|
-
env
|
|
155
|
+
private: boolean;
|
|
156
|
+
depends: string;
|
|
157
|
+
description: string;
|
|
158
|
+
default: any;
|
|
159
|
+
set: Function;
|
|
160
|
+
get: Function;
|
|
161
|
+
env: string[] | string;
|
|
162
162
|
};
|
|
163
163
|
port: {
|
|
164
164
|
writable: boolean;
|
|
@@ -203,20 +203,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
203
203
|
get?: Function;
|
|
204
204
|
env?: string[] | string;
|
|
205
205
|
};
|
|
206
|
-
types:
|
|
207
|
-
collection: boolean;
|
|
208
|
-
type: string;
|
|
209
|
-
isKey: boolean;
|
|
210
|
-
writable: boolean;
|
|
211
|
-
mandatory: boolean;
|
|
212
|
-
private?: boolean;
|
|
213
|
-
depends?: string;
|
|
214
|
-
description?: string;
|
|
215
|
-
default?: any;
|
|
216
|
-
set?: Function;
|
|
217
|
-
get?: Function;
|
|
218
|
-
env?: string[] | string;
|
|
219
|
-
};
|
|
206
|
+
types: typeof import("pacc").string_collection_attribute;
|
|
220
207
|
tls: import("pacc").AttributeDefinition;
|
|
221
208
|
hostName: {
|
|
222
209
|
writable: boolean;
|
|
@@ -233,18 +220,18 @@ export class SystemdJournalUploadService extends Service {
|
|
|
233
220
|
env?: string[] | string;
|
|
234
221
|
};
|
|
235
222
|
cidrAddresses: {
|
|
236
|
-
collection: boolean;
|
|
237
223
|
writable: boolean;
|
|
224
|
+
collection: boolean;
|
|
238
225
|
type: string;
|
|
239
226
|
isKey: boolean;
|
|
240
227
|
mandatory: boolean;
|
|
241
|
-
private
|
|
242
|
-
depends
|
|
243
|
-
description
|
|
244
|
-
default
|
|
245
|
-
set
|
|
246
|
-
get
|
|
247
|
-
env
|
|
228
|
+
private: boolean;
|
|
229
|
+
depends: string;
|
|
230
|
+
description: string;
|
|
231
|
+
default: any;
|
|
232
|
+
set: Function;
|
|
233
|
+
get: Function;
|
|
234
|
+
env: string[] | string;
|
|
248
235
|
};
|
|
249
236
|
cidrAddress: {
|
|
250
237
|
writable: boolean;
|
|
@@ -261,18 +248,18 @@ export class SystemdJournalUploadService extends Service {
|
|
|
261
248
|
env?: string[] | string;
|
|
262
249
|
};
|
|
263
250
|
addresses: {
|
|
264
|
-
collection: boolean;
|
|
265
251
|
writable: boolean;
|
|
252
|
+
collection: boolean;
|
|
266
253
|
type: string;
|
|
267
254
|
isKey: boolean;
|
|
268
255
|
mandatory: boolean;
|
|
269
|
-
private
|
|
270
|
-
depends
|
|
271
|
-
description
|
|
272
|
-
default
|
|
273
|
-
set
|
|
274
|
-
get
|
|
275
|
-
env
|
|
256
|
+
private: boolean;
|
|
257
|
+
depends: string;
|
|
258
|
+
description: string;
|
|
259
|
+
default: any;
|
|
260
|
+
set: Function;
|
|
261
|
+
get: Function;
|
|
262
|
+
env: string[] | string;
|
|
276
263
|
};
|
|
277
264
|
address: {
|
|
278
265
|
writable: boolean;
|
|
@@ -306,9 +293,9 @@ export class SystemdJournalUploadService extends Service {
|
|
|
306
293
|
};
|
|
307
294
|
type: import("pacc").AttributeDefinition;
|
|
308
295
|
name: {
|
|
309
|
-
isKey: boolean;
|
|
310
296
|
writable: boolean;
|
|
311
297
|
type: string;
|
|
298
|
+
isKey: boolean;
|
|
312
299
|
mandatory: boolean;
|
|
313
300
|
collection: boolean;
|
|
314
301
|
private?: boolean;
|
|
@@ -390,18 +377,18 @@ export class SystemdJournalUploadService extends Service {
|
|
|
390
377
|
env?: string[] | string;
|
|
391
378
|
};
|
|
392
379
|
tags: {
|
|
393
|
-
collection: boolean;
|
|
394
380
|
writable: boolean;
|
|
381
|
+
collection: boolean;
|
|
395
382
|
type: string;
|
|
396
383
|
isKey: boolean;
|
|
397
384
|
mandatory: boolean;
|
|
398
|
-
private
|
|
399
|
-
depends
|
|
400
|
-
description
|
|
401
|
-
default
|
|
402
|
-
set
|
|
403
|
-
get
|
|
404
|
-
env
|
|
385
|
+
private: boolean;
|
|
386
|
+
depends: string;
|
|
387
|
+
description: string;
|
|
388
|
+
default: any;
|
|
389
|
+
set: Function;
|
|
390
|
+
get: Function;
|
|
391
|
+
env: string[] | string;
|
|
405
392
|
};
|
|
406
393
|
};
|
|
407
394
|
};
|
|
@@ -437,18 +424,18 @@ export class SystemdJournalUploadService extends Service {
|
|
|
437
424
|
env?: string[] | string;
|
|
438
425
|
};
|
|
439
426
|
systemd: {
|
|
440
|
-
collection: boolean;
|
|
441
427
|
writable: boolean;
|
|
428
|
+
collection: boolean;
|
|
442
429
|
type: string;
|
|
443
430
|
isKey: boolean;
|
|
444
431
|
mandatory: boolean;
|
|
445
|
-
private
|
|
446
|
-
depends
|
|
447
|
-
description
|
|
448
|
-
default
|
|
449
|
-
set
|
|
450
|
-
get
|
|
451
|
-
env
|
|
432
|
+
private: boolean;
|
|
433
|
+
depends: string;
|
|
434
|
+
description: string;
|
|
435
|
+
default: any;
|
|
436
|
+
set: Function;
|
|
437
|
+
get: Function;
|
|
438
|
+
env: string[] | string;
|
|
452
439
|
};
|
|
453
440
|
port: {
|
|
454
441
|
writable: boolean;
|
|
@@ -493,20 +480,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
493
480
|
get?: Function;
|
|
494
481
|
env?: string[] | string;
|
|
495
482
|
};
|
|
496
|
-
types:
|
|
497
|
-
collection: boolean;
|
|
498
|
-
type: string;
|
|
499
|
-
isKey: boolean;
|
|
500
|
-
writable: boolean;
|
|
501
|
-
mandatory: boolean;
|
|
502
|
-
private?: boolean;
|
|
503
|
-
depends?: string;
|
|
504
|
-
description?: string;
|
|
505
|
-
default?: any;
|
|
506
|
-
set?: Function;
|
|
507
|
-
get?: Function;
|
|
508
|
-
env?: string[] | string;
|
|
509
|
-
};
|
|
483
|
+
types: typeof import("pacc").string_collection_attribute;
|
|
510
484
|
tls: import("pacc").AttributeDefinition;
|
|
511
485
|
hostName: {
|
|
512
486
|
writable: boolean;
|
|
@@ -523,18 +497,18 @@ export class SystemdJournalUploadService extends Service {
|
|
|
523
497
|
env?: string[] | string;
|
|
524
498
|
};
|
|
525
499
|
cidrAddresses: {
|
|
526
|
-
collection: boolean;
|
|
527
500
|
writable: boolean;
|
|
501
|
+
collection: boolean;
|
|
528
502
|
type: string;
|
|
529
503
|
isKey: boolean;
|
|
530
504
|
mandatory: boolean;
|
|
531
|
-
private
|
|
532
|
-
depends
|
|
533
|
-
description
|
|
534
|
-
default
|
|
535
|
-
set
|
|
536
|
-
get
|
|
537
|
-
env
|
|
505
|
+
private: boolean;
|
|
506
|
+
depends: string;
|
|
507
|
+
description: string;
|
|
508
|
+
default: any;
|
|
509
|
+
set: Function;
|
|
510
|
+
get: Function;
|
|
511
|
+
env: string[] | string;
|
|
538
512
|
};
|
|
539
513
|
cidrAddress: {
|
|
540
514
|
writable: boolean;
|
|
@@ -551,18 +525,18 @@ export class SystemdJournalUploadService extends Service {
|
|
|
551
525
|
env?: string[] | string;
|
|
552
526
|
};
|
|
553
527
|
addresses: {
|
|
554
|
-
collection: boolean;
|
|
555
528
|
writable: boolean;
|
|
529
|
+
collection: boolean;
|
|
556
530
|
type: string;
|
|
557
531
|
isKey: boolean;
|
|
558
532
|
mandatory: boolean;
|
|
559
|
-
private
|
|
560
|
-
depends
|
|
561
|
-
description
|
|
562
|
-
default
|
|
563
|
-
set
|
|
564
|
-
get
|
|
565
|
-
env
|
|
533
|
+
private: boolean;
|
|
534
|
+
depends: string;
|
|
535
|
+
description: string;
|
|
536
|
+
default: any;
|
|
537
|
+
set: Function;
|
|
538
|
+
get: Function;
|
|
539
|
+
env: string[] | string;
|
|
566
540
|
};
|
|
567
541
|
address: {
|
|
568
542
|
writable: boolean;
|
|
@@ -16,9 +16,9 @@ export class SystemdJournalService extends Service {
|
|
|
16
16
|
};
|
|
17
17
|
type: import("pacc").AttributeDefinition;
|
|
18
18
|
name: {
|
|
19
|
-
isKey: boolean;
|
|
20
19
|
writable: boolean;
|
|
21
20
|
type: string;
|
|
21
|
+
isKey: boolean;
|
|
22
22
|
mandatory: boolean;
|
|
23
23
|
collection: boolean;
|
|
24
24
|
private?: boolean;
|
|
@@ -100,18 +100,18 @@ export class SystemdJournalService extends Service {
|
|
|
100
100
|
env?: string[] | string;
|
|
101
101
|
};
|
|
102
102
|
tags: {
|
|
103
|
-
collection: boolean;
|
|
104
103
|
writable: boolean;
|
|
104
|
+
collection: boolean;
|
|
105
105
|
type: string;
|
|
106
106
|
isKey: boolean;
|
|
107
107
|
mandatory: boolean;
|
|
108
|
-
private
|
|
109
|
-
depends
|
|
110
|
-
description
|
|
111
|
-
default
|
|
112
|
-
set
|
|
113
|
-
get
|
|
114
|
-
env
|
|
108
|
+
private: boolean;
|
|
109
|
+
depends: string;
|
|
110
|
+
description: string;
|
|
111
|
+
default: any;
|
|
112
|
+
set: Function;
|
|
113
|
+
get: Function;
|
|
114
|
+
env: string[] | string;
|
|
115
115
|
};
|
|
116
116
|
};
|
|
117
117
|
};
|
|
@@ -147,18 +147,18 @@ export class SystemdJournalService extends Service {
|
|
|
147
147
|
env?: string[] | string;
|
|
148
148
|
};
|
|
149
149
|
systemd: {
|
|
150
|
-
collection: boolean;
|
|
151
150
|
writable: boolean;
|
|
151
|
+
collection: boolean;
|
|
152
152
|
type: string;
|
|
153
153
|
isKey: boolean;
|
|
154
154
|
mandatory: boolean;
|
|
155
|
-
private
|
|
156
|
-
depends
|
|
157
|
-
description
|
|
158
|
-
default
|
|
159
|
-
set
|
|
160
|
-
get
|
|
161
|
-
env
|
|
155
|
+
private: boolean;
|
|
156
|
+
depends: string;
|
|
157
|
+
description: string;
|
|
158
|
+
default: any;
|
|
159
|
+
set: Function;
|
|
160
|
+
get: Function;
|
|
161
|
+
env: string[] | string;
|
|
162
162
|
};
|
|
163
163
|
port: {
|
|
164
164
|
writable: boolean;
|
|
@@ -203,20 +203,7 @@ export class SystemdJournalService extends Service {
|
|
|
203
203
|
get?: Function;
|
|
204
204
|
env?: string[] | string;
|
|
205
205
|
};
|
|
206
|
-
types:
|
|
207
|
-
collection: boolean;
|
|
208
|
-
type: string;
|
|
209
|
-
isKey: boolean;
|
|
210
|
-
writable: boolean;
|
|
211
|
-
mandatory: boolean;
|
|
212
|
-
private?: boolean;
|
|
213
|
-
depends?: string;
|
|
214
|
-
description?: string;
|
|
215
|
-
default?: any;
|
|
216
|
-
set?: Function;
|
|
217
|
-
get?: Function;
|
|
218
|
-
env?: string[] | string;
|
|
219
|
-
};
|
|
206
|
+
types: typeof import("pacc").string_collection_attribute;
|
|
220
207
|
tls: import("pacc").AttributeDefinition;
|
|
221
208
|
hostName: {
|
|
222
209
|
writable: boolean;
|
|
@@ -233,18 +220,18 @@ export class SystemdJournalService extends Service {
|
|
|
233
220
|
env?: string[] | string;
|
|
234
221
|
};
|
|
235
222
|
cidrAddresses: {
|
|
236
|
-
collection: boolean;
|
|
237
223
|
writable: boolean;
|
|
224
|
+
collection: boolean;
|
|
238
225
|
type: string;
|
|
239
226
|
isKey: boolean;
|
|
240
227
|
mandatory: boolean;
|
|
241
|
-
private
|
|
242
|
-
depends
|
|
243
|
-
description
|
|
244
|
-
default
|
|
245
|
-
set
|
|
246
|
-
get
|
|
247
|
-
env
|
|
228
|
+
private: boolean;
|
|
229
|
+
depends: string;
|
|
230
|
+
description: string;
|
|
231
|
+
default: any;
|
|
232
|
+
set: Function;
|
|
233
|
+
get: Function;
|
|
234
|
+
env: string[] | string;
|
|
248
235
|
};
|
|
249
236
|
cidrAddress: {
|
|
250
237
|
writable: boolean;
|
|
@@ -261,18 +248,18 @@ export class SystemdJournalService extends Service {
|
|
|
261
248
|
env?: string[] | string;
|
|
262
249
|
};
|
|
263
250
|
addresses: {
|
|
264
|
-
collection: boolean;
|
|
265
251
|
writable: boolean;
|
|
252
|
+
collection: boolean;
|
|
266
253
|
type: string;
|
|
267
254
|
isKey: boolean;
|
|
268
255
|
mandatory: boolean;
|
|
269
|
-
private
|
|
270
|
-
depends
|
|
271
|
-
description
|
|
272
|
-
default
|
|
273
|
-
set
|
|
274
|
-
get
|
|
275
|
-
env
|
|
256
|
+
private: boolean;
|
|
257
|
+
depends: string;
|
|
258
|
+
description: string;
|
|
259
|
+
default: any;
|
|
260
|
+
set: Function;
|
|
261
|
+
get: Function;
|
|
262
|
+
env: string[] | string;
|
|
276
263
|
};
|
|
277
264
|
address: {
|
|
278
265
|
writable: boolean;
|
|
@@ -306,9 +293,9 @@ export class SystemdJournalService extends Service {
|
|
|
306
293
|
};
|
|
307
294
|
type: import("pacc").AttributeDefinition;
|
|
308
295
|
name: {
|
|
309
|
-
isKey: boolean;
|
|
310
296
|
writable: boolean;
|
|
311
297
|
type: string;
|
|
298
|
+
isKey: boolean;
|
|
312
299
|
mandatory: boolean;
|
|
313
300
|
collection: boolean;
|
|
314
301
|
private?: boolean;
|
|
@@ -390,18 +377,18 @@ export class SystemdJournalService extends Service {
|
|
|
390
377
|
env?: string[] | string;
|
|
391
378
|
};
|
|
392
379
|
tags: {
|
|
393
|
-
collection: boolean;
|
|
394
380
|
writable: boolean;
|
|
381
|
+
collection: boolean;
|
|
395
382
|
type: string;
|
|
396
383
|
isKey: boolean;
|
|
397
384
|
mandatory: boolean;
|
|
398
|
-
private
|
|
399
|
-
depends
|
|
400
|
-
description
|
|
401
|
-
default
|
|
402
|
-
set
|
|
403
|
-
get
|
|
404
|
-
env
|
|
385
|
+
private: boolean;
|
|
386
|
+
depends: string;
|
|
387
|
+
description: string;
|
|
388
|
+
default: any;
|
|
389
|
+
set: Function;
|
|
390
|
+
get: Function;
|
|
391
|
+
env: string[] | string;
|
|
405
392
|
};
|
|
406
393
|
};
|
|
407
394
|
};
|
|
@@ -437,18 +424,18 @@ export class SystemdJournalService extends Service {
|
|
|
437
424
|
env?: string[] | string;
|
|
438
425
|
};
|
|
439
426
|
systemd: {
|
|
440
|
-
collection: boolean;
|
|
441
427
|
writable: boolean;
|
|
428
|
+
collection: boolean;
|
|
442
429
|
type: string;
|
|
443
430
|
isKey: boolean;
|
|
444
431
|
mandatory: boolean;
|
|
445
|
-
private
|
|
446
|
-
depends
|
|
447
|
-
description
|
|
448
|
-
default
|
|
449
|
-
set
|
|
450
|
-
get
|
|
451
|
-
env
|
|
432
|
+
private: boolean;
|
|
433
|
+
depends: string;
|
|
434
|
+
description: string;
|
|
435
|
+
default: any;
|
|
436
|
+
set: Function;
|
|
437
|
+
get: Function;
|
|
438
|
+
env: string[] | string;
|
|
452
439
|
};
|
|
453
440
|
port: {
|
|
454
441
|
writable: boolean;
|
|
@@ -493,20 +480,7 @@ export class SystemdJournalService extends Service {
|
|
|
493
480
|
get?: Function;
|
|
494
481
|
env?: string[] | string;
|
|
495
482
|
};
|
|
496
|
-
types:
|
|
497
|
-
collection: boolean;
|
|
498
|
-
type: string;
|
|
499
|
-
isKey: boolean;
|
|
500
|
-
writable: boolean;
|
|
501
|
-
mandatory: boolean;
|
|
502
|
-
private?: boolean;
|
|
503
|
-
depends?: string;
|
|
504
|
-
description?: string;
|
|
505
|
-
default?: any;
|
|
506
|
-
set?: Function;
|
|
507
|
-
get?: Function;
|
|
508
|
-
env?: string[] | string;
|
|
509
|
-
};
|
|
483
|
+
types: typeof import("pacc").string_collection_attribute;
|
|
510
484
|
tls: import("pacc").AttributeDefinition;
|
|
511
485
|
hostName: {
|
|
512
486
|
writable: boolean;
|
|
@@ -523,18 +497,18 @@ export class SystemdJournalService extends Service {
|
|
|
523
497
|
env?: string[] | string;
|
|
524
498
|
};
|
|
525
499
|
cidrAddresses: {
|
|
526
|
-
collection: boolean;
|
|
527
500
|
writable: boolean;
|
|
501
|
+
collection: boolean;
|
|
528
502
|
type: string;
|
|
529
503
|
isKey: boolean;
|
|
530
504
|
mandatory: boolean;
|
|
531
|
-
private
|
|
532
|
-
depends
|
|
533
|
-
description
|
|
534
|
-
default
|
|
535
|
-
set
|
|
536
|
-
get
|
|
537
|
-
env
|
|
505
|
+
private: boolean;
|
|
506
|
+
depends: string;
|
|
507
|
+
description: string;
|
|
508
|
+
default: any;
|
|
509
|
+
set: Function;
|
|
510
|
+
get: Function;
|
|
511
|
+
env: string[] | string;
|
|
538
512
|
};
|
|
539
513
|
cidrAddress: {
|
|
540
514
|
writable: boolean;
|
|
@@ -551,18 +525,18 @@ export class SystemdJournalService extends Service {
|
|
|
551
525
|
env?: string[] | string;
|
|
552
526
|
};
|
|
553
527
|
addresses: {
|
|
554
|
-
collection: boolean;
|
|
555
528
|
writable: boolean;
|
|
529
|
+
collection: boolean;
|
|
556
530
|
type: string;
|
|
557
531
|
isKey: boolean;
|
|
558
532
|
mandatory: boolean;
|
|
559
|
-
private
|
|
560
|
-
depends
|
|
561
|
-
description
|
|
562
|
-
default
|
|
563
|
-
set
|
|
564
|
-
get
|
|
565
|
-
env
|
|
533
|
+
private: boolean;
|
|
534
|
+
depends: string;
|
|
535
|
+
description: string;
|
|
536
|
+
default: any;
|
|
537
|
+
set: Function;
|
|
538
|
+
get: Function;
|
|
539
|
+
env: string[] | string;
|
|
566
540
|
};
|
|
567
541
|
address: {
|
|
568
542
|
writable: boolean;
|