pmcf 3.4.0 → 3.4.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/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
|
@@ -137,18 +137,18 @@ export namespace networkAddressProperties {
|
|
|
137
137
|
env?: string[] | string;
|
|
138
138
|
};
|
|
139
139
|
let cidrAddresses: {
|
|
140
|
-
collection: boolean;
|
|
141
140
|
writable: boolean;
|
|
141
|
+
collection: boolean;
|
|
142
142
|
type: string;
|
|
143
143
|
isKey: boolean;
|
|
144
144
|
mandatory: boolean;
|
|
145
|
-
private
|
|
146
|
-
depends
|
|
147
|
-
description
|
|
148
|
-
default
|
|
149
|
-
set
|
|
150
|
-
get
|
|
151
|
-
env
|
|
145
|
+
private: boolean;
|
|
146
|
+
depends: string;
|
|
147
|
+
description: string;
|
|
148
|
+
default: any;
|
|
149
|
+
set: Function;
|
|
150
|
+
get: Function;
|
|
151
|
+
env: string[] | string;
|
|
152
152
|
};
|
|
153
153
|
let cidrAddress: {
|
|
154
154
|
writable: boolean;
|
|
@@ -165,18 +165,18 @@ export namespace networkAddressProperties {
|
|
|
165
165
|
env?: string[] | string;
|
|
166
166
|
};
|
|
167
167
|
let addresses: {
|
|
168
|
-
collection: boolean;
|
|
169
168
|
writable: boolean;
|
|
169
|
+
collection: boolean;
|
|
170
170
|
type: string;
|
|
171
171
|
isKey: boolean;
|
|
172
172
|
mandatory: boolean;
|
|
173
|
-
private
|
|
174
|
-
depends
|
|
175
|
-
description
|
|
176
|
-
default
|
|
177
|
-
set
|
|
178
|
-
get
|
|
179
|
-
env
|
|
173
|
+
private: boolean;
|
|
174
|
+
depends: string;
|
|
175
|
+
description: string;
|
|
176
|
+
default: any;
|
|
177
|
+
set: Function;
|
|
178
|
+
get: Function;
|
|
179
|
+
env: string[] | string;
|
|
180
180
|
};
|
|
181
181
|
let address: {
|
|
182
182
|
writable: boolean;
|
package/types/network.d.mts
CHANGED
|
@@ -18,9 +18,9 @@ export class Network extends Owner {
|
|
|
18
18
|
};
|
|
19
19
|
type: import("pacc").AttributeDefinition;
|
|
20
20
|
name: {
|
|
21
|
-
isKey: boolean;
|
|
22
21
|
writable: boolean;
|
|
23
22
|
type: string;
|
|
23
|
+
isKey: boolean;
|
|
24
24
|
mandatory: boolean;
|
|
25
25
|
collection: boolean;
|
|
26
26
|
private?: boolean;
|
|
@@ -102,18 +102,18 @@ export class Network extends Owner {
|
|
|
102
102
|
env?: string[] | string;
|
|
103
103
|
};
|
|
104
104
|
tags: {
|
|
105
|
-
collection: boolean;
|
|
106
105
|
writable: boolean;
|
|
106
|
+
collection: boolean;
|
|
107
107
|
type: string;
|
|
108
108
|
isKey: boolean;
|
|
109
109
|
mandatory: boolean;
|
|
110
|
-
private
|
|
111
|
-
depends
|
|
112
|
-
description
|
|
113
|
-
default
|
|
114
|
-
set
|
|
115
|
-
get
|
|
116
|
-
env
|
|
110
|
+
private: boolean;
|
|
111
|
+
depends: string;
|
|
112
|
+
description: string;
|
|
113
|
+
default: any;
|
|
114
|
+
set: Function;
|
|
115
|
+
get: Function;
|
|
116
|
+
env: string[] | string;
|
|
117
117
|
};
|
|
118
118
|
};
|
|
119
119
|
};
|
|
@@ -160,9 +160,9 @@ export class Network extends Owner {
|
|
|
160
160
|
writable: boolean;
|
|
161
161
|
};
|
|
162
162
|
prefixLength: {
|
|
163
|
-
writable: boolean;
|
|
164
163
|
type: string;
|
|
165
164
|
isKey: boolean;
|
|
165
|
+
writable: boolean;
|
|
166
166
|
mandatory: boolean;
|
|
167
167
|
collection: boolean;
|
|
168
168
|
private?: boolean;
|
|
@@ -207,18 +207,18 @@ export class Network extends Owner {
|
|
|
207
207
|
env?: string[] | string;
|
|
208
208
|
};
|
|
209
209
|
domains: {
|
|
210
|
-
collection: boolean;
|
|
211
210
|
writable: boolean;
|
|
211
|
+
collection: boolean;
|
|
212
212
|
type: string;
|
|
213
213
|
isKey: boolean;
|
|
214
214
|
mandatory: boolean;
|
|
215
|
-
private
|
|
216
|
-
depends
|
|
217
|
-
description
|
|
218
|
-
default
|
|
219
|
-
set
|
|
220
|
-
get
|
|
221
|
-
env
|
|
215
|
+
private: boolean;
|
|
216
|
+
depends: string;
|
|
217
|
+
description: string;
|
|
218
|
+
default: any;
|
|
219
|
+
set: Function;
|
|
220
|
+
get: Function;
|
|
221
|
+
env: string[] | string;
|
|
222
222
|
};
|
|
223
223
|
timezone: {
|
|
224
224
|
writable: boolean;
|
|
@@ -235,32 +235,32 @@ export class Network extends Owner {
|
|
|
235
235
|
env?: string[] | string;
|
|
236
236
|
};
|
|
237
237
|
architectures: {
|
|
238
|
-
collection: boolean;
|
|
239
238
|
writable: boolean;
|
|
239
|
+
collection: boolean;
|
|
240
240
|
type: string;
|
|
241
241
|
isKey: boolean;
|
|
242
242
|
mandatory: boolean;
|
|
243
|
-
private
|
|
244
|
-
depends
|
|
245
|
-
description
|
|
246
|
-
default
|
|
247
|
-
set
|
|
248
|
-
get
|
|
249
|
-
env
|
|
243
|
+
private: boolean;
|
|
244
|
+
depends: string;
|
|
245
|
+
description: string;
|
|
246
|
+
default: any;
|
|
247
|
+
set: Function;
|
|
248
|
+
get: Function;
|
|
249
|
+
env: string[] | string;
|
|
250
250
|
};
|
|
251
251
|
locales: {
|
|
252
|
-
collection: boolean;
|
|
253
252
|
writable: boolean;
|
|
253
|
+
collection: boolean;
|
|
254
254
|
type: string;
|
|
255
255
|
isKey: boolean;
|
|
256
256
|
mandatory: boolean;
|
|
257
|
-
private
|
|
258
|
-
depends
|
|
259
|
-
description
|
|
260
|
-
default
|
|
261
|
-
set
|
|
262
|
-
get
|
|
263
|
-
env
|
|
257
|
+
private: boolean;
|
|
258
|
+
depends: string;
|
|
259
|
+
description: string;
|
|
260
|
+
default: any;
|
|
261
|
+
set: Function;
|
|
262
|
+
get: Function;
|
|
263
|
+
env: string[] | string;
|
|
264
264
|
};
|
|
265
265
|
administratorEmail: {
|
|
266
266
|
writable: boolean;
|
package/types/owner.d.mts
CHANGED
|
@@ -14,9 +14,9 @@ export class Owner extends Base {
|
|
|
14
14
|
};
|
|
15
15
|
type: import("pacc").AttributeDefinition;
|
|
16
16
|
name: {
|
|
17
|
-
isKey: boolean;
|
|
18
17
|
writable: boolean;
|
|
19
18
|
type: string;
|
|
19
|
+
isKey: boolean;
|
|
20
20
|
mandatory: boolean;
|
|
21
21
|
collection: boolean;
|
|
22
22
|
private?: boolean;
|
|
@@ -98,18 +98,18 @@ export class Owner extends Base {
|
|
|
98
98
|
env?: string[] | string;
|
|
99
99
|
};
|
|
100
100
|
tags: {
|
|
101
|
-
collection: boolean;
|
|
102
101
|
writable: boolean;
|
|
102
|
+
collection: boolean;
|
|
103
103
|
type: string;
|
|
104
104
|
isKey: boolean;
|
|
105
105
|
mandatory: boolean;
|
|
106
|
-
private
|
|
107
|
-
depends
|
|
108
|
-
description
|
|
109
|
-
default
|
|
110
|
-
set
|
|
111
|
-
get
|
|
112
|
-
env
|
|
106
|
+
private: boolean;
|
|
107
|
+
depends: string;
|
|
108
|
+
description: string;
|
|
109
|
+
default: any;
|
|
110
|
+
set: Function;
|
|
111
|
+
get: Function;
|
|
112
|
+
env: string[] | string;
|
|
113
113
|
};
|
|
114
114
|
};
|
|
115
115
|
};
|
|
@@ -156,9 +156,9 @@ export class Owner extends Base {
|
|
|
156
156
|
writable: boolean;
|
|
157
157
|
};
|
|
158
158
|
prefixLength: {
|
|
159
|
-
writable: boolean;
|
|
160
159
|
type: string;
|
|
161
160
|
isKey: boolean;
|
|
161
|
+
writable: boolean;
|
|
162
162
|
mandatory: boolean;
|
|
163
163
|
collection: boolean;
|
|
164
164
|
private?: boolean;
|
|
@@ -203,18 +203,18 @@ export class Owner extends Base {
|
|
|
203
203
|
env?: string[] | string;
|
|
204
204
|
};
|
|
205
205
|
domains: {
|
|
206
|
-
collection: boolean;
|
|
207
206
|
writable: boolean;
|
|
207
|
+
collection: boolean;
|
|
208
208
|
type: string;
|
|
209
209
|
isKey: boolean;
|
|
210
210
|
mandatory: boolean;
|
|
211
|
-
private
|
|
212
|
-
depends
|
|
213
|
-
description
|
|
214
|
-
default
|
|
215
|
-
set
|
|
216
|
-
get
|
|
217
|
-
env
|
|
211
|
+
private: boolean;
|
|
212
|
+
depends: string;
|
|
213
|
+
description: string;
|
|
214
|
+
default: any;
|
|
215
|
+
set: Function;
|
|
216
|
+
get: Function;
|
|
217
|
+
env: string[] | string;
|
|
218
218
|
};
|
|
219
219
|
timezone: {
|
|
220
220
|
writable: boolean;
|
|
@@ -231,32 +231,32 @@ export class Owner extends Base {
|
|
|
231
231
|
env?: string[] | string;
|
|
232
232
|
};
|
|
233
233
|
architectures: {
|
|
234
|
-
collection: boolean;
|
|
235
234
|
writable: boolean;
|
|
235
|
+
collection: boolean;
|
|
236
236
|
type: string;
|
|
237
237
|
isKey: boolean;
|
|
238
238
|
mandatory: boolean;
|
|
239
|
-
private
|
|
240
|
-
depends
|
|
241
|
-
description
|
|
242
|
-
default
|
|
243
|
-
set
|
|
244
|
-
get
|
|
245
|
-
env
|
|
239
|
+
private: boolean;
|
|
240
|
+
depends: string;
|
|
241
|
+
description: string;
|
|
242
|
+
default: any;
|
|
243
|
+
set: Function;
|
|
244
|
+
get: Function;
|
|
245
|
+
env: string[] | string;
|
|
246
246
|
};
|
|
247
247
|
locales: {
|
|
248
|
-
collection: boolean;
|
|
249
248
|
writable: boolean;
|
|
249
|
+
collection: boolean;
|
|
250
250
|
type: string;
|
|
251
251
|
isKey: boolean;
|
|
252
252
|
mandatory: boolean;
|
|
253
|
-
private
|
|
254
|
-
depends
|
|
255
|
-
description
|
|
256
|
-
default
|
|
257
|
-
set
|
|
258
|
-
get
|
|
259
|
-
env
|
|
253
|
+
private: boolean;
|
|
254
|
+
depends: string;
|
|
255
|
+
description: string;
|
|
256
|
+
default: any;
|
|
257
|
+
set: Function;
|
|
258
|
+
get: Function;
|
|
259
|
+
env: string[] | string;
|
|
260
260
|
};
|
|
261
261
|
administratorEmail: {
|
|
262
262
|
writable: boolean;
|
package/types/root.d.mts
CHANGED
|
@@ -20,9 +20,9 @@ export class Root extends Location {
|
|
|
20
20
|
};
|
|
21
21
|
type: import("pacc").AttributeDefinition;
|
|
22
22
|
name: {
|
|
23
|
-
isKey: boolean;
|
|
24
23
|
writable: boolean;
|
|
25
24
|
type: string;
|
|
25
|
+
isKey: boolean;
|
|
26
26
|
mandatory: boolean;
|
|
27
27
|
collection: boolean;
|
|
28
28
|
private?: boolean;
|
|
@@ -104,18 +104,18 @@ export class Root extends Location {
|
|
|
104
104
|
env?: string[] | string;
|
|
105
105
|
};
|
|
106
106
|
tags: {
|
|
107
|
-
collection: boolean;
|
|
108
107
|
writable: boolean;
|
|
108
|
+
collection: boolean;
|
|
109
109
|
type: string;
|
|
110
110
|
isKey: boolean;
|
|
111
111
|
mandatory: boolean;
|
|
112
|
-
private
|
|
113
|
-
depends
|
|
114
|
-
description
|
|
115
|
-
default
|
|
116
|
-
set
|
|
117
|
-
get
|
|
118
|
-
env
|
|
112
|
+
private: boolean;
|
|
113
|
+
depends: string;
|
|
114
|
+
description: string;
|
|
115
|
+
default: any;
|
|
116
|
+
set: Function;
|
|
117
|
+
get: Function;
|
|
118
|
+
env: string[] | string;
|
|
119
119
|
};
|
|
120
120
|
};
|
|
121
121
|
};
|
|
@@ -162,9 +162,9 @@ export class Root extends Location {
|
|
|
162
162
|
writable: boolean;
|
|
163
163
|
};
|
|
164
164
|
prefixLength: {
|
|
165
|
-
writable: boolean;
|
|
166
165
|
type: string;
|
|
167
166
|
isKey: boolean;
|
|
167
|
+
writable: boolean;
|
|
168
168
|
mandatory: boolean;
|
|
169
169
|
collection: boolean;
|
|
170
170
|
private?: boolean;
|
|
@@ -209,18 +209,18 @@ export class Root extends Location {
|
|
|
209
209
|
env?: string[] | string;
|
|
210
210
|
};
|
|
211
211
|
domains: {
|
|
212
|
-
collection: boolean;
|
|
213
212
|
writable: boolean;
|
|
213
|
+
collection: boolean;
|
|
214
214
|
type: string;
|
|
215
215
|
isKey: boolean;
|
|
216
216
|
mandatory: boolean;
|
|
217
|
-
private
|
|
218
|
-
depends
|
|
219
|
-
description
|
|
220
|
-
default
|
|
221
|
-
set
|
|
222
|
-
get
|
|
223
|
-
env
|
|
217
|
+
private: boolean;
|
|
218
|
+
depends: string;
|
|
219
|
+
description: string;
|
|
220
|
+
default: any;
|
|
221
|
+
set: Function;
|
|
222
|
+
get: Function;
|
|
223
|
+
env: string[] | string;
|
|
224
224
|
};
|
|
225
225
|
timezone: {
|
|
226
226
|
writable: boolean;
|
|
@@ -237,32 +237,32 @@ export class Root extends Location {
|
|
|
237
237
|
env?: string[] | string;
|
|
238
238
|
};
|
|
239
239
|
architectures: {
|
|
240
|
-
collection: boolean;
|
|
241
240
|
writable: boolean;
|
|
241
|
+
collection: boolean;
|
|
242
242
|
type: string;
|
|
243
243
|
isKey: boolean;
|
|
244
244
|
mandatory: boolean;
|
|
245
|
-
private
|
|
246
|
-
depends
|
|
247
|
-
description
|
|
248
|
-
default
|
|
249
|
-
set
|
|
250
|
-
get
|
|
251
|
-
env
|
|
245
|
+
private: boolean;
|
|
246
|
+
depends: string;
|
|
247
|
+
description: string;
|
|
248
|
+
default: any;
|
|
249
|
+
set: Function;
|
|
250
|
+
get: Function;
|
|
251
|
+
env: string[] | string;
|
|
252
252
|
};
|
|
253
253
|
locales: {
|
|
254
|
-
collection: boolean;
|
|
255
254
|
writable: boolean;
|
|
255
|
+
collection: boolean;
|
|
256
256
|
type: string;
|
|
257
257
|
isKey: boolean;
|
|
258
258
|
mandatory: boolean;
|
|
259
|
-
private
|
|
260
|
-
depends
|
|
261
|
-
description
|
|
262
|
-
default
|
|
263
|
-
set
|
|
264
|
-
get
|
|
265
|
-
env
|
|
259
|
+
private: boolean;
|
|
260
|
+
depends: string;
|
|
261
|
+
description: string;
|
|
262
|
+
default: any;
|
|
263
|
+
set: Function;
|
|
264
|
+
get: Function;
|
|
265
|
+
env: string[] | string;
|
|
266
266
|
};
|
|
267
267
|
administratorEmail: {
|
|
268
268
|
writable: boolean;
|
|
@@ -296,9 +296,9 @@ export class Root extends Location {
|
|
|
296
296
|
};
|
|
297
297
|
type: import("pacc").AttributeDefinition;
|
|
298
298
|
name: {
|
|
299
|
-
isKey: boolean;
|
|
300
299
|
writable: boolean;
|
|
301
300
|
type: string;
|
|
301
|
+
isKey: boolean;
|
|
302
302
|
mandatory: boolean;
|
|
303
303
|
collection: boolean;
|
|
304
304
|
private?: boolean;
|
|
@@ -380,18 +380,18 @@ export class Root extends Location {
|
|
|
380
380
|
env?: string[] | string;
|
|
381
381
|
};
|
|
382
382
|
tags: {
|
|
383
|
-
collection: boolean;
|
|
384
383
|
writable: boolean;
|
|
384
|
+
collection: boolean;
|
|
385
385
|
type: string;
|
|
386
386
|
isKey: boolean;
|
|
387
387
|
mandatory: boolean;
|
|
388
|
-
private
|
|
389
|
-
depends
|
|
390
|
-
description
|
|
391
|
-
default
|
|
392
|
-
set
|
|
393
|
-
get
|
|
394
|
-
env
|
|
388
|
+
private: boolean;
|
|
389
|
+
depends: string;
|
|
390
|
+
description: string;
|
|
391
|
+
default: any;
|
|
392
|
+
set: Function;
|
|
393
|
+
get: Function;
|
|
394
|
+
env: string[] | string;
|
|
395
395
|
};
|
|
396
396
|
};
|
|
397
397
|
};
|
|
@@ -438,9 +438,9 @@ export class Root extends Location {
|
|
|
438
438
|
writable: boolean;
|
|
439
439
|
};
|
|
440
440
|
prefixLength: {
|
|
441
|
-
writable: boolean;
|
|
442
441
|
type: string;
|
|
443
442
|
isKey: boolean;
|
|
443
|
+
writable: boolean;
|
|
444
444
|
mandatory: boolean;
|
|
445
445
|
collection: boolean;
|
|
446
446
|
private?: boolean;
|
|
@@ -485,18 +485,18 @@ export class Root extends Location {
|
|
|
485
485
|
env?: string[] | string;
|
|
486
486
|
};
|
|
487
487
|
domains: {
|
|
488
|
-
collection: boolean;
|
|
489
488
|
writable: boolean;
|
|
489
|
+
collection: boolean;
|
|
490
490
|
type: string;
|
|
491
491
|
isKey: boolean;
|
|
492
492
|
mandatory: boolean;
|
|
493
|
-
private
|
|
494
|
-
depends
|
|
495
|
-
description
|
|
496
|
-
default
|
|
497
|
-
set
|
|
498
|
-
get
|
|
499
|
-
env
|
|
493
|
+
private: boolean;
|
|
494
|
+
depends: string;
|
|
495
|
+
description: string;
|
|
496
|
+
default: any;
|
|
497
|
+
set: Function;
|
|
498
|
+
get: Function;
|
|
499
|
+
env: string[] | string;
|
|
500
500
|
};
|
|
501
501
|
timezone: {
|
|
502
502
|
writable: boolean;
|
|
@@ -513,32 +513,32 @@ export class Root extends Location {
|
|
|
513
513
|
env?: string[] | string;
|
|
514
514
|
};
|
|
515
515
|
architectures: {
|
|
516
|
-
collection: boolean;
|
|
517
516
|
writable: boolean;
|
|
517
|
+
collection: boolean;
|
|
518
518
|
type: string;
|
|
519
519
|
isKey: boolean;
|
|
520
520
|
mandatory: boolean;
|
|
521
|
-
private
|
|
522
|
-
depends
|
|
523
|
-
description
|
|
524
|
-
default
|
|
525
|
-
set
|
|
526
|
-
get
|
|
527
|
-
env
|
|
521
|
+
private: boolean;
|
|
522
|
+
depends: string;
|
|
523
|
+
description: string;
|
|
524
|
+
default: any;
|
|
525
|
+
set: Function;
|
|
526
|
+
get: Function;
|
|
527
|
+
env: string[] | string;
|
|
528
528
|
};
|
|
529
529
|
locales: {
|
|
530
|
-
collection: boolean;
|
|
531
530
|
writable: boolean;
|
|
531
|
+
collection: boolean;
|
|
532
532
|
type: string;
|
|
533
533
|
isKey: boolean;
|
|
534
534
|
mandatory: boolean;
|
|
535
|
-
private
|
|
536
|
-
depends
|
|
537
|
-
description
|
|
538
|
-
default
|
|
539
|
-
set
|
|
540
|
-
get
|
|
541
|
-
env
|
|
535
|
+
private: boolean;
|
|
536
|
+
depends: string;
|
|
537
|
+
description: string;
|
|
538
|
+
default: any;
|
|
539
|
+
set: Function;
|
|
540
|
+
get: Function;
|
|
541
|
+
env: string[] | string;
|
|
542
542
|
};
|
|
543
543
|
administratorEmail: {
|
|
544
544
|
writable: boolean;
|
|
@@ -558,18 +558,18 @@ export class Root extends Location {
|
|
|
558
558
|
};
|
|
559
559
|
properties: {
|
|
560
560
|
locales: {
|
|
561
|
-
collection: boolean;
|
|
562
561
|
writable: boolean;
|
|
562
|
+
collection: boolean;
|
|
563
563
|
type: string;
|
|
564
564
|
isKey: boolean;
|
|
565
565
|
mandatory: boolean;
|
|
566
|
-
private
|
|
567
|
-
depends
|
|
568
|
-
description
|
|
569
|
-
default
|
|
570
|
-
set
|
|
571
|
-
get
|
|
572
|
-
env
|
|
566
|
+
private: boolean;
|
|
567
|
+
depends: string;
|
|
568
|
+
description: string;
|
|
569
|
+
default: any;
|
|
570
|
+
set: Function;
|
|
571
|
+
get: Function;
|
|
572
|
+
env: string[] | string;
|
|
573
573
|
};
|
|
574
574
|
};
|
|
575
575
|
};
|