flightdeck 0.2.88 → 0.2.90
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/dist/{flightdeck.lib-CgUIGPOF.js → flightdeck.lib-DMlmcPLR.js} +4 -16
- package/dist/flightdeck.lib-DMlmcPLR.js.map +1 -0
- package/dist/flightdeck.x.js +64 -70
- package/dist/flightdeck.x.js.map +1 -1
- package/dist/klaxon.x.js +31 -34
- package/dist/klaxon.x.js.map +1 -1
- package/dist/lib.d.ts +171 -173
- package/dist/lib.d.ts.map +1 -1
- package/dist/lib.js +2 -2
- package/gen/lnav-format-schema.gen.ts +1 -1
- package/package.json +13 -12
- package/src/flightdeck.env.ts +2 -2
- package/src/flightdeck.lib.ts +11 -14
- package/src/flightdeck.x.ts +28 -25
- package/src/klaxon.x.ts +29 -38
- package/dist/flightdeck.lib-CgUIGPOF.js.map +0 -1
package/dist/lib.d.ts
CHANGED
|
@@ -1,50 +1,49 @@
|
|
|
1
1
|
import { t as __export } from "./chunk-Bp6m_JJh.js";
|
|
2
|
-
import { z } from "zod/v4";
|
|
3
2
|
import { ChildProcessWithoutNullStreams } from "node:child_process";
|
|
4
3
|
import { Future } from "atom.io/internal";
|
|
5
4
|
import { ChildSocket } from "atom.io/realtime-server";
|
|
6
5
|
import { CronJob } from "cron";
|
|
7
6
|
import { FilesystemStorage } from "safedeposit";
|
|
8
|
-
import { z
|
|
7
|
+
import { z } from "zod/v3";
|
|
9
8
|
|
|
10
9
|
//#region gen/lnav-format-schema.gen.d.ts
|
|
11
|
-
declare const lnavFormatSchema: z
|
|
12
|
-
regex: z
|
|
13
|
-
pattern: z
|
|
14
|
-
"module-format": z
|
|
15
|
-
}, "strict", z
|
|
10
|
+
declare const lnavFormatSchema: z.ZodObject<{
|
|
11
|
+
regex: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
12
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
13
|
+
"module-format": z.ZodOptional<z.ZodBoolean>;
|
|
14
|
+
}, "strict", z.ZodTypeAny, {
|
|
16
15
|
pattern?: string | undefined;
|
|
17
16
|
"module-format"?: boolean | undefined;
|
|
18
17
|
}, {
|
|
19
18
|
pattern?: string | undefined;
|
|
20
19
|
"module-format"?: boolean | undefined;
|
|
21
|
-
}>, z
|
|
20
|
+
}>, z.ZodNever]>>, Record<string, {
|
|
22
21
|
pattern?: string | undefined;
|
|
23
22
|
"module-format"?: boolean | undefined;
|
|
24
23
|
}>, Record<string, {
|
|
25
24
|
pattern?: string | undefined;
|
|
26
25
|
"module-format"?: boolean | undefined;
|
|
27
26
|
}>>>;
|
|
28
|
-
json: z
|
|
29
|
-
"convert-to-local-time": z
|
|
30
|
-
"hide-extra": z
|
|
31
|
-
multiline: z
|
|
32
|
-
"timestamp-divisor": z
|
|
33
|
-
"file-pattern": z
|
|
34
|
-
converter: z
|
|
35
|
-
type: z
|
|
36
|
-
header: z
|
|
37
|
-
expr: z
|
|
38
|
-
size: z
|
|
39
|
-
}, "strict", z
|
|
27
|
+
json: z.ZodOptional<z.ZodBoolean>;
|
|
28
|
+
"convert-to-local-time": z.ZodOptional<z.ZodBoolean>;
|
|
29
|
+
"hide-extra": z.ZodOptional<z.ZodBoolean>;
|
|
30
|
+
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
31
|
+
"timestamp-divisor": z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNumber]>>;
|
|
32
|
+
"file-pattern": z.ZodOptional<z.ZodString>;
|
|
33
|
+
converter: z.ZodOptional<z.ZodObject<{
|
|
34
|
+
type: z.ZodOptional<z.ZodString>;
|
|
35
|
+
header: z.ZodOptional<z.ZodObject<{
|
|
36
|
+
expr: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNever]>>, Record<string, string>, Record<string, string>>>;
|
|
37
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
38
|
+
}, "strict", z.ZodTypeAny, {
|
|
40
39
|
expr?: Record<string, string> | undefined;
|
|
41
40
|
size?: number | undefined;
|
|
42
41
|
}, {
|
|
43
42
|
expr?: Record<string, string> | undefined;
|
|
44
43
|
size?: number | undefined;
|
|
45
44
|
}>>;
|
|
46
|
-
command: z
|
|
47
|
-
}, "strict", z
|
|
45
|
+
command: z.ZodOptional<z.ZodString>;
|
|
46
|
+
}, "strict", z.ZodTypeAny, {
|
|
48
47
|
type?: string | undefined;
|
|
49
48
|
header?: {
|
|
50
49
|
expr?: Record<string, string> | undefined;
|
|
@@ -59,29 +58,29 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
59
58
|
} | undefined;
|
|
60
59
|
command?: string | undefined;
|
|
61
60
|
}>>;
|
|
62
|
-
"level-field": z
|
|
63
|
-
"level-pointer": z
|
|
64
|
-
"timestamp-field": z
|
|
65
|
-
"subsecond-field": z
|
|
66
|
-
"subsecond-units": z
|
|
67
|
-
"time-field": z
|
|
68
|
-
"body-field": z
|
|
69
|
-
url: z
|
|
70
|
-
title: z
|
|
71
|
-
description: z
|
|
72
|
-
"timestamp-format": z
|
|
73
|
-
"module-field": z
|
|
74
|
-
"opid-field": z
|
|
75
|
-
opid: z
|
|
76
|
-
subid: z
|
|
77
|
-
description: z
|
|
78
|
-
format: z
|
|
79
|
-
field: z
|
|
80
|
-
extractor: z
|
|
81
|
-
prefix: z
|
|
82
|
-
suffix: z
|
|
83
|
-
joiner: z
|
|
84
|
-
}, "strict", z
|
|
61
|
+
"level-field": z.ZodOptional<z.ZodString>;
|
|
62
|
+
"level-pointer": z.ZodOptional<z.ZodString>;
|
|
63
|
+
"timestamp-field": z.ZodOptional<z.ZodString>;
|
|
64
|
+
"subsecond-field": z.ZodOptional<z.ZodString>;
|
|
65
|
+
"subsecond-units": z.ZodOptional<z.ZodEnum<["milli", "micro", "nano"]>>;
|
|
66
|
+
"time-field": z.ZodOptional<z.ZodString>;
|
|
67
|
+
"body-field": z.ZodOptional<z.ZodString>;
|
|
68
|
+
url: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodString]>>;
|
|
69
|
+
title: z.ZodOptional<z.ZodString>;
|
|
70
|
+
description: z.ZodOptional<z.ZodString>;
|
|
71
|
+
"timestamp-format": z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
72
|
+
"module-field": z.ZodOptional<z.ZodString>;
|
|
73
|
+
"opid-field": z.ZodOptional<z.ZodString>;
|
|
74
|
+
opid: z.ZodOptional<z.ZodObject<{
|
|
75
|
+
subid: z.ZodOptional<z.ZodString>;
|
|
76
|
+
description: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
77
|
+
format: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
78
|
+
field: z.ZodOptional<z.ZodString>;
|
|
79
|
+
extractor: z.ZodOptional<z.ZodString>;
|
|
80
|
+
prefix: z.ZodOptional<z.ZodString>;
|
|
81
|
+
suffix: z.ZodOptional<z.ZodString>;
|
|
82
|
+
joiner: z.ZodOptional<z.ZodString>;
|
|
83
|
+
}, "strict", z.ZodTypeAny, {
|
|
85
84
|
field?: string | undefined;
|
|
86
85
|
extractor?: string | undefined;
|
|
87
86
|
prefix?: string | undefined;
|
|
@@ -94,7 +93,7 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
94
93
|
suffix?: string | undefined;
|
|
95
94
|
joiner?: string | undefined;
|
|
96
95
|
}>, "many">>;
|
|
97
|
-
}, "strict", z
|
|
96
|
+
}, "strict", z.ZodTypeAny, {
|
|
98
97
|
format?: {
|
|
99
98
|
field?: string | undefined;
|
|
100
99
|
extractor?: string | undefined;
|
|
@@ -110,7 +109,7 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
110
109
|
suffix?: string | undefined;
|
|
111
110
|
joiner?: string | undefined;
|
|
112
111
|
}[] | undefined;
|
|
113
|
-
}>, z
|
|
112
|
+
}>, z.ZodNever]>>, Record<string, {
|
|
114
113
|
format?: {
|
|
115
114
|
field?: string | undefined;
|
|
116
115
|
extractor?: string | undefined;
|
|
@@ -127,14 +126,14 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
127
126
|
joiner?: string | undefined;
|
|
128
127
|
}[] | undefined;
|
|
129
128
|
}>>>;
|
|
130
|
-
"sub-description": z
|
|
131
|
-
format: z
|
|
132
|
-
field: z
|
|
133
|
-
extractor: z
|
|
134
|
-
prefix: z
|
|
135
|
-
suffix: z
|
|
136
|
-
joiner: z
|
|
137
|
-
}, "strict", z
|
|
129
|
+
"sub-description": z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
130
|
+
format: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
131
|
+
field: z.ZodOptional<z.ZodString>;
|
|
132
|
+
extractor: z.ZodOptional<z.ZodString>;
|
|
133
|
+
prefix: z.ZodOptional<z.ZodString>;
|
|
134
|
+
suffix: z.ZodOptional<z.ZodString>;
|
|
135
|
+
joiner: z.ZodOptional<z.ZodString>;
|
|
136
|
+
}, "strict", z.ZodTypeAny, {
|
|
138
137
|
field?: string | undefined;
|
|
139
138
|
extractor?: string | undefined;
|
|
140
139
|
prefix?: string | undefined;
|
|
@@ -147,7 +146,7 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
147
146
|
suffix?: string | undefined;
|
|
148
147
|
joiner?: string | undefined;
|
|
149
148
|
}>, "many">>;
|
|
150
|
-
}, "strict", z
|
|
149
|
+
}, "strict", z.ZodTypeAny, {
|
|
151
150
|
format?: {
|
|
152
151
|
field?: string | undefined;
|
|
153
152
|
extractor?: string | undefined;
|
|
@@ -163,7 +162,7 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
163
162
|
suffix?: string | undefined;
|
|
164
163
|
joiner?: string | undefined;
|
|
165
164
|
}[] | undefined;
|
|
166
|
-
}>, z
|
|
165
|
+
}>, z.ZodNever]>>, Record<string, {
|
|
167
166
|
format?: {
|
|
168
167
|
field?: string | undefined;
|
|
169
168
|
extractor?: string | undefined;
|
|
@@ -180,7 +179,7 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
180
179
|
joiner?: string | undefined;
|
|
181
180
|
}[] | undefined;
|
|
182
181
|
}>>>;
|
|
183
|
-
}, "strict", z
|
|
182
|
+
}, "strict", z.ZodTypeAny, {
|
|
184
183
|
description?: Record<string, {
|
|
185
184
|
format?: {
|
|
186
185
|
field?: string | undefined;
|
|
@@ -221,30 +220,30 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
221
220
|
}[] | undefined;
|
|
222
221
|
}> | undefined;
|
|
223
222
|
}>>;
|
|
224
|
-
"ordered-by-time": z
|
|
225
|
-
level: z
|
|
226
|
-
value: z
|
|
227
|
-
kind: z
|
|
228
|
-
collate: z
|
|
229
|
-
unit: z
|
|
230
|
-
field: z
|
|
231
|
-
"scaling-factor": z
|
|
232
|
-
op: z
|
|
233
|
-
value: z
|
|
234
|
-
}, "strict", z
|
|
223
|
+
"ordered-by-time": z.ZodOptional<z.ZodBoolean>;
|
|
224
|
+
level: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNever]>>, Record<string, string | number>, Record<string, string | number>>>;
|
|
225
|
+
value: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
226
|
+
kind: z.ZodOptional<z.ZodEnum<["string", "integer", "float", "boolean", "json", "struct", "quoted", "xml"]>>;
|
|
227
|
+
collate: z.ZodOptional<z.ZodString>;
|
|
228
|
+
unit: z.ZodOptional<z.ZodObject<{
|
|
229
|
+
field: z.ZodOptional<z.ZodString>;
|
|
230
|
+
"scaling-factor": z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
231
|
+
op: z.ZodOptional<z.ZodEnum<["identity", "multiply", "divide"]>>;
|
|
232
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
233
|
+
}, "strict", z.ZodTypeAny, {
|
|
235
234
|
value?: number | undefined;
|
|
236
235
|
op?: "identity" | "multiply" | "divide" | undefined;
|
|
237
236
|
}, {
|
|
238
237
|
value?: number | undefined;
|
|
239
238
|
op?: "identity" | "multiply" | "divide" | undefined;
|
|
240
|
-
}>, z
|
|
239
|
+
}>, z.ZodNever]>>, Record<string, {
|
|
241
240
|
value?: number | undefined;
|
|
242
241
|
op?: "identity" | "multiply" | "divide" | undefined;
|
|
243
242
|
}>, Record<string, {
|
|
244
243
|
value?: number | undefined;
|
|
245
244
|
op?: "identity" | "multiply" | "divide" | undefined;
|
|
246
245
|
}>>>;
|
|
247
|
-
}, "strict", z
|
|
246
|
+
}, "strict", z.ZodTypeAny, {
|
|
248
247
|
field?: string | undefined;
|
|
249
248
|
"scaling-factor"?: Record<string, {
|
|
250
249
|
value?: number | undefined;
|
|
@@ -257,13 +256,13 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
257
256
|
op?: "identity" | "multiply" | "divide" | undefined;
|
|
258
257
|
}> | undefined;
|
|
259
258
|
}>>;
|
|
260
|
-
identifier: z
|
|
261
|
-
"foreign-key": z
|
|
262
|
-
hidden: z
|
|
263
|
-
"action-list": z
|
|
264
|
-
rewriter: z
|
|
265
|
-
description: z
|
|
266
|
-
}, "strict", z
|
|
259
|
+
identifier: z.ZodOptional<z.ZodBoolean>;
|
|
260
|
+
"foreign-key": z.ZodOptional<z.ZodBoolean>;
|
|
261
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
262
|
+
"action-list": z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
263
|
+
rewriter: z.ZodOptional<z.ZodString>;
|
|
264
|
+
description: z.ZodOptional<z.ZodString>;
|
|
265
|
+
}, "strict", z.ZodTypeAny, {
|
|
267
266
|
description?: string | undefined;
|
|
268
267
|
kind?: "string" | "boolean" | "integer" | "float" | "json" | "struct" | "quoted" | "xml" | undefined;
|
|
269
268
|
collate?: string | undefined;
|
|
@@ -295,7 +294,7 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
295
294
|
hidden?: boolean | undefined;
|
|
296
295
|
"action-list"?: string[] | undefined;
|
|
297
296
|
rewriter?: string | undefined;
|
|
298
|
-
}>, z
|
|
297
|
+
}>, z.ZodNever]>>, Record<string, {
|
|
299
298
|
description?: string | undefined;
|
|
300
299
|
kind?: "string" | "boolean" | "integer" | "float" | "json" | "struct" | "quoted" | "xml" | undefined;
|
|
301
300
|
collate?: string | undefined;
|
|
@@ -328,91 +327,91 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
328
327
|
"action-list"?: string[] | undefined;
|
|
329
328
|
rewriter?: string | undefined;
|
|
330
329
|
}>>>;
|
|
331
|
-
tags: z
|
|
332
|
-
paths: z
|
|
333
|
-
glob: z
|
|
334
|
-
}, "strict", z
|
|
330
|
+
tags: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
331
|
+
paths: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
332
|
+
glob: z.ZodOptional<z.ZodString>;
|
|
333
|
+
}, "strict", z.ZodTypeAny, {
|
|
335
334
|
glob?: string | undefined;
|
|
336
335
|
}, {
|
|
337
336
|
glob?: string | undefined;
|
|
338
337
|
}>, "many">>;
|
|
339
|
-
pattern: z
|
|
340
|
-
description: z
|
|
341
|
-
level: z
|
|
342
|
-
}, "strict", z
|
|
343
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
338
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
339
|
+
description: z.ZodOptional<z.ZodString>;
|
|
340
|
+
level: z.ZodOptional<z.ZodEnum<["trace", "debug5", "debug4", "debug3", "debug2", "debug", "info", "stats", "notice", "warning", "error", "critical", "fatal"]>>;
|
|
341
|
+
}, "strict", z.ZodTypeAny, {
|
|
344
342
|
pattern?: string | undefined;
|
|
345
343
|
description?: string | undefined;
|
|
344
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
346
345
|
paths?: {
|
|
347
346
|
glob?: string | undefined;
|
|
348
347
|
}[] | undefined;
|
|
349
348
|
}, {
|
|
350
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
351
349
|
pattern?: string | undefined;
|
|
352
350
|
description?: string | undefined;
|
|
351
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
353
352
|
paths?: {
|
|
354
353
|
glob?: string | undefined;
|
|
355
354
|
}[] | undefined;
|
|
356
|
-
}>, z
|
|
357
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
355
|
+
}>, z.ZodNever]>>, Record<string, {
|
|
358
356
|
pattern?: string | undefined;
|
|
359
357
|
description?: string | undefined;
|
|
358
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
360
359
|
paths?: {
|
|
361
360
|
glob?: string | undefined;
|
|
362
361
|
}[] | undefined;
|
|
363
362
|
}>, Record<string, {
|
|
364
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
365
363
|
pattern?: string | undefined;
|
|
366
364
|
description?: string | undefined;
|
|
365
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
367
366
|
paths?: {
|
|
368
367
|
glob?: string | undefined;
|
|
369
368
|
}[] | undefined;
|
|
370
369
|
}>>>;
|
|
371
|
-
partitions: z
|
|
372
|
-
paths: z
|
|
373
|
-
glob: z
|
|
374
|
-
}, "strict", z
|
|
370
|
+
partitions: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
371
|
+
paths: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
372
|
+
glob: z.ZodOptional<z.ZodString>;
|
|
373
|
+
}, "strict", z.ZodTypeAny, {
|
|
375
374
|
glob?: string | undefined;
|
|
376
375
|
}, {
|
|
377
376
|
glob?: string | undefined;
|
|
378
377
|
}>, "many">>;
|
|
379
|
-
pattern: z
|
|
380
|
-
description: z
|
|
381
|
-
level: z
|
|
382
|
-
}, "strict", z
|
|
383
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
378
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
379
|
+
description: z.ZodOptional<z.ZodString>;
|
|
380
|
+
level: z.ZodOptional<z.ZodEnum<["trace", "debug5", "debug4", "debug3", "debug2", "debug", "info", "stats", "notice", "warning", "error", "critical", "fatal"]>>;
|
|
381
|
+
}, "strict", z.ZodTypeAny, {
|
|
384
382
|
pattern?: string | undefined;
|
|
385
383
|
description?: string | undefined;
|
|
384
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
386
385
|
paths?: {
|
|
387
386
|
glob?: string | undefined;
|
|
388
387
|
}[] | undefined;
|
|
389
388
|
}, {
|
|
390
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
391
389
|
pattern?: string | undefined;
|
|
392
390
|
description?: string | undefined;
|
|
391
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
393
392
|
paths?: {
|
|
394
393
|
glob?: string | undefined;
|
|
395
394
|
}[] | undefined;
|
|
396
|
-
}>, z
|
|
397
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
395
|
+
}>, z.ZodNever]>>, Record<string, {
|
|
398
396
|
pattern?: string | undefined;
|
|
399
397
|
description?: string | undefined;
|
|
398
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
400
399
|
paths?: {
|
|
401
400
|
glob?: string | undefined;
|
|
402
401
|
}[] | undefined;
|
|
403
402
|
}>, Record<string, {
|
|
404
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
405
403
|
pattern?: string | undefined;
|
|
406
404
|
description?: string | undefined;
|
|
405
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
407
406
|
paths?: {
|
|
408
407
|
glob?: string | undefined;
|
|
409
408
|
}[] | undefined;
|
|
410
409
|
}>>>;
|
|
411
|
-
action: z
|
|
412
|
-
label: z
|
|
413
|
-
"capture-output": z
|
|
414
|
-
cmd: z
|
|
415
|
-
}, "strict", z
|
|
410
|
+
action: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
411
|
+
label: z.ZodOptional<z.ZodString>;
|
|
412
|
+
"capture-output": z.ZodOptional<z.ZodBoolean>;
|
|
413
|
+
cmd: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
414
|
+
}, "strict", z.ZodTypeAny, {
|
|
416
415
|
label?: string | undefined;
|
|
417
416
|
"capture-output"?: boolean | undefined;
|
|
418
417
|
cmd?: string[] | undefined;
|
|
@@ -420,7 +419,7 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
420
419
|
label?: string | undefined;
|
|
421
420
|
"capture-output"?: boolean | undefined;
|
|
422
421
|
cmd?: string[] | undefined;
|
|
423
|
-
}>]>, z
|
|
422
|
+
}>]>, z.ZodNever]>>, Record<string, string | {
|
|
424
423
|
label?: string | undefined;
|
|
425
424
|
"capture-output"?: boolean | undefined;
|
|
426
425
|
cmd?: string[] | undefined;
|
|
@@ -429,32 +428,32 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
429
428
|
"capture-output"?: boolean | undefined;
|
|
430
429
|
cmd?: string[] | undefined;
|
|
431
430
|
}>>>;
|
|
432
|
-
sample: z
|
|
433
|
-
description: z
|
|
434
|
-
line: z
|
|
435
|
-
level: z
|
|
436
|
-
}, "strict", z
|
|
437
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
431
|
+
sample: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
432
|
+
description: z.ZodOptional<z.ZodString>;
|
|
433
|
+
line: z.ZodOptional<z.ZodString>;
|
|
434
|
+
level: z.ZodOptional<z.ZodEnum<["trace", "debug5", "debug4", "debug3", "debug2", "debug", "info", "stats", "notice", "warning", "error", "critical", "fatal"]>>;
|
|
435
|
+
}, "strict", z.ZodTypeAny, {
|
|
438
436
|
description?: string | undefined;
|
|
437
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
439
438
|
line?: string | undefined;
|
|
440
439
|
}, {
|
|
441
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
442
440
|
description?: string | undefined;
|
|
441
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
443
442
|
line?: string | undefined;
|
|
444
443
|
}>, "many">>;
|
|
445
|
-
"line-format": z
|
|
446
|
-
field: z
|
|
447
|
-
"default-value": z
|
|
448
|
-
"timestamp-format": z
|
|
449
|
-
"min-width": z
|
|
450
|
-
"auto-width": z
|
|
451
|
-
"max-width": z
|
|
452
|
-
align: z
|
|
453
|
-
overflow: z
|
|
454
|
-
"text-transform": z
|
|
455
|
-
prefix: z
|
|
456
|
-
suffix: z
|
|
457
|
-
}, "strict", z
|
|
444
|
+
"line-format": z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
445
|
+
field: z.ZodOptional<z.ZodString>;
|
|
446
|
+
"default-value": z.ZodOptional<z.ZodString>;
|
|
447
|
+
"timestamp-format": z.ZodOptional<z.ZodString>;
|
|
448
|
+
"min-width": z.ZodOptional<z.ZodNumber>;
|
|
449
|
+
"auto-width": z.ZodOptional<z.ZodBoolean>;
|
|
450
|
+
"max-width": z.ZodOptional<z.ZodNumber>;
|
|
451
|
+
align: z.ZodOptional<z.ZodEnum<["left", "right"]>>;
|
|
452
|
+
overflow: z.ZodOptional<z.ZodEnum<["abbrev", "truncate", "dot-dot", "last-word"]>>;
|
|
453
|
+
"text-transform": z.ZodOptional<z.ZodEnum<["none", "uppercase", "lowercase", "capitalize"]>>;
|
|
454
|
+
prefix: z.ZodOptional<z.ZodString>;
|
|
455
|
+
suffix: z.ZodOptional<z.ZodString>;
|
|
456
|
+
}, "strict", z.ZodTypeAny, {
|
|
458
457
|
"timestamp-format"?: string | undefined;
|
|
459
458
|
field?: string | undefined;
|
|
460
459
|
prefix?: string | undefined;
|
|
@@ -479,34 +478,34 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
479
478
|
overflow?: "abbrev" | "truncate" | "dot-dot" | "last-word" | undefined;
|
|
480
479
|
"text-transform"?: "none" | "uppercase" | "lowercase" | "capitalize" | undefined;
|
|
481
480
|
}>]>, "many">>;
|
|
482
|
-
"search-table": z
|
|
483
|
-
pattern: z
|
|
484
|
-
glob: z
|
|
485
|
-
level: z
|
|
486
|
-
}, "strict", z
|
|
487
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
481
|
+
"search-table": z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
482
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
483
|
+
glob: z.ZodOptional<z.ZodString>;
|
|
484
|
+
level: z.ZodOptional<z.ZodEnum<["trace", "debug5", "debug4", "debug3", "debug2", "debug", "info", "stats", "notice", "warning", "error", "critical", "fatal"]>>;
|
|
485
|
+
}, "strict", z.ZodTypeAny, {
|
|
488
486
|
pattern?: string | undefined;
|
|
487
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
489
488
|
glob?: string | undefined;
|
|
490
489
|
}, {
|
|
491
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
492
490
|
pattern?: string | undefined;
|
|
493
|
-
glob?: string | undefined;
|
|
494
|
-
}>, z$1.ZodNever]>>, Record<string, {
|
|
495
491
|
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
492
|
+
glob?: string | undefined;
|
|
493
|
+
}>, z.ZodNever]>>, Record<string, {
|
|
496
494
|
pattern?: string | undefined;
|
|
495
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
497
496
|
glob?: string | undefined;
|
|
498
497
|
}>, Record<string, {
|
|
499
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
500
498
|
pattern?: string | undefined;
|
|
499
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
501
500
|
glob?: string | undefined;
|
|
502
501
|
}>>>;
|
|
503
|
-
highlights: z
|
|
504
|
-
pattern: z
|
|
505
|
-
color: z
|
|
506
|
-
"background-color": z
|
|
507
|
-
underline: z
|
|
508
|
-
blink: z
|
|
509
|
-
}, "strict", z
|
|
502
|
+
highlights: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
503
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
504
|
+
color: z.ZodOptional<z.ZodString>;
|
|
505
|
+
"background-color": z.ZodOptional<z.ZodString>;
|
|
506
|
+
underline: z.ZodOptional<z.ZodBoolean>;
|
|
507
|
+
blink: z.ZodOptional<z.ZodBoolean>;
|
|
508
|
+
}, "strict", z.ZodTypeAny, {
|
|
510
509
|
pattern?: string | undefined;
|
|
511
510
|
color?: string | undefined;
|
|
512
511
|
"background-color"?: string | undefined;
|
|
@@ -518,7 +517,7 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
518
517
|
"background-color"?: string | undefined;
|
|
519
518
|
underline?: boolean | undefined;
|
|
520
519
|
blink?: boolean | undefined;
|
|
521
|
-
}>, z
|
|
520
|
+
}>, z.ZodNever]>>, Record<string, {
|
|
522
521
|
pattern?: string | undefined;
|
|
523
522
|
color?: string | undefined;
|
|
524
523
|
"background-color"?: string | undefined;
|
|
@@ -531,10 +530,9 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
531
530
|
underline?: boolean | undefined;
|
|
532
531
|
blink?: boolean | undefined;
|
|
533
532
|
}>>>;
|
|
534
|
-
"file-type": z
|
|
535
|
-
"max-unrecognized-lines": z
|
|
536
|
-
}, "strict", z
|
|
537
|
-
level?: Record<string, string | number> | undefined;
|
|
533
|
+
"file-type": z.ZodOptional<z.ZodEnum<["text", "json", "csv"]>>;
|
|
534
|
+
"max-unrecognized-lines": z.ZodOptional<z.ZodNumber>;
|
|
535
|
+
}, "strict", z.ZodTypeAny, {
|
|
538
536
|
value?: Record<string, {
|
|
539
537
|
description?: string | undefined;
|
|
540
538
|
kind?: "string" | "boolean" | "integer" | "float" | "json" | "struct" | "quoted" | "xml" | undefined;
|
|
@@ -605,18 +603,19 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
605
603
|
}> | undefined;
|
|
606
604
|
} | undefined;
|
|
607
605
|
"ordered-by-time"?: boolean | undefined;
|
|
606
|
+
level?: Record<string, string | number> | undefined;
|
|
608
607
|
tags?: Record<string, {
|
|
609
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
610
608
|
pattern?: string | undefined;
|
|
611
609
|
description?: string | undefined;
|
|
610
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
612
611
|
paths?: {
|
|
613
612
|
glob?: string | undefined;
|
|
614
613
|
}[] | undefined;
|
|
615
614
|
}> | undefined;
|
|
616
615
|
partitions?: Record<string, {
|
|
617
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
618
616
|
pattern?: string | undefined;
|
|
619
617
|
description?: string | undefined;
|
|
618
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
620
619
|
paths?: {
|
|
621
620
|
glob?: string | undefined;
|
|
622
621
|
}[] | undefined;
|
|
@@ -627,8 +626,8 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
627
626
|
cmd?: string[] | undefined;
|
|
628
627
|
}> | undefined;
|
|
629
628
|
sample?: {
|
|
630
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
631
629
|
description?: string | undefined;
|
|
630
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
632
631
|
line?: string | undefined;
|
|
633
632
|
}[] | undefined;
|
|
634
633
|
"line-format"?: (string | {
|
|
@@ -645,8 +644,8 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
645
644
|
"text-transform"?: "none" | "uppercase" | "lowercase" | "capitalize" | undefined;
|
|
646
645
|
})[] | undefined;
|
|
647
646
|
"search-table"?: Record<string, {
|
|
648
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
649
647
|
pattern?: string | undefined;
|
|
648
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
650
649
|
glob?: string | undefined;
|
|
651
650
|
}> | undefined;
|
|
652
651
|
highlights?: Record<string, {
|
|
@@ -659,7 +658,6 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
659
658
|
"file-type"?: "json" | "text" | "csv" | undefined;
|
|
660
659
|
"max-unrecognized-lines"?: number | undefined;
|
|
661
660
|
}, {
|
|
662
|
-
level?: Record<string, string | number> | undefined;
|
|
663
661
|
value?: Record<string, {
|
|
664
662
|
description?: string | undefined;
|
|
665
663
|
kind?: "string" | "boolean" | "integer" | "float" | "json" | "struct" | "quoted" | "xml" | undefined;
|
|
@@ -730,18 +728,19 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
730
728
|
}> | undefined;
|
|
731
729
|
} | undefined;
|
|
732
730
|
"ordered-by-time"?: boolean | undefined;
|
|
731
|
+
level?: Record<string, string | number> | undefined;
|
|
733
732
|
tags?: Record<string, {
|
|
734
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
735
733
|
pattern?: string | undefined;
|
|
736
734
|
description?: string | undefined;
|
|
735
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
737
736
|
paths?: {
|
|
738
737
|
glob?: string | undefined;
|
|
739
738
|
}[] | undefined;
|
|
740
739
|
}> | undefined;
|
|
741
740
|
partitions?: Record<string, {
|
|
742
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
743
741
|
pattern?: string | undefined;
|
|
744
742
|
description?: string | undefined;
|
|
743
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
745
744
|
paths?: {
|
|
746
745
|
glob?: string | undefined;
|
|
747
746
|
}[] | undefined;
|
|
@@ -752,8 +751,8 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
752
751
|
cmd?: string[] | undefined;
|
|
753
752
|
}> | undefined;
|
|
754
753
|
sample?: {
|
|
755
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
756
754
|
description?: string | undefined;
|
|
755
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
757
756
|
line?: string | undefined;
|
|
758
757
|
}[] | undefined;
|
|
759
758
|
"line-format"?: (string | {
|
|
@@ -770,8 +769,8 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
770
769
|
"text-transform"?: "none" | "uppercase" | "lowercase" | "capitalize" | undefined;
|
|
771
770
|
})[] | undefined;
|
|
772
771
|
"search-table"?: Record<string, {
|
|
773
|
-
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
774
772
|
pattern?: string | undefined;
|
|
773
|
+
level?: "info" | "trace" | "debug5" | "debug4" | "debug3" | "debug2" | "debug" | "stats" | "notice" | "warning" | "error" | "critical" | "fatal" | undefined;
|
|
775
774
|
glob?: string | undefined;
|
|
776
775
|
}> | undefined;
|
|
777
776
|
highlights?: Record<string, {
|
|
@@ -784,7 +783,7 @@ declare const lnavFormatSchema: z$1.ZodObject<{
|
|
|
784
783
|
"file-type"?: "json" | "text" | "csv" | undefined;
|
|
785
784
|
"max-unrecognized-lines"?: number | undefined;
|
|
786
785
|
}>;
|
|
787
|
-
type LnavFormat = z
|
|
786
|
+
type LnavFormat = z.infer<typeof lnavFormatSchema>;
|
|
788
787
|
//#endregion
|
|
789
788
|
//#region src/flightdeck.lib.d.ts
|
|
790
789
|
declare const FLIGHTDECK_SETUP_PHASES: readonly ["downloaded", "installed"];
|
|
@@ -848,15 +847,14 @@ declare class FlightDeck<S extends string = string> {
|
|
|
848
847
|
declare const FLIGHTDECK_INFO = "info";
|
|
849
848
|
declare const FLIGHTDECK_WARN = "warn";
|
|
850
849
|
declare const FLIGHTDECK_ERROR = "ERR!";
|
|
851
|
-
|
|
852
|
-
level:
|
|
853
|
-
timestamp:
|
|
854
|
-
package:
|
|
855
|
-
service
|
|
856
|
-
process:
|
|
857
|
-
body:
|
|
858
|
-
}
|
|
859
|
-
type FlightDeckLog = z.infer<typeof flightDeckLogSchema>;
|
|
850
|
+
type FlightDeckLog = {
|
|
851
|
+
level: typeof FLIGHTDECK_ERROR | typeof FLIGHTDECK_INFO | typeof FLIGHTDECK_WARN;
|
|
852
|
+
timestamp: number;
|
|
853
|
+
package: string;
|
|
854
|
+
service?: string;
|
|
855
|
+
process: number;
|
|
856
|
+
body: string;
|
|
857
|
+
};
|
|
860
858
|
declare const LINE_FORMAT = "line-format";
|
|
861
859
|
declare const VALUE = "value";
|
|
862
860
|
type LnavFormatVisualComponent = Exclude<Exclude<LnavFormat[`line-format`], undefined>[number], string>;
|
|
@@ -985,5 +983,5 @@ declare function scramble<K$1 extends string = string>({
|
|
|
985
983
|
publishedPackages
|
|
986
984
|
}: ScrambleOptions<K$1>): Promise<ScrambleResult<K$1>>;
|
|
987
985
|
//#endregion
|
|
988
|
-
export { FLIGHTDECK_ERROR, FLIGHTDECK_INFO, FLIGHTDECK_LNAV_FORMAT, FLIGHTDECK_SETUP_PHASES, FLIGHTDECK_UPDATE_PHASES, FLIGHTDECK_WARN, FlightDeck, FlightDeckFormat, FlightDeckLog, FlightDeckLogger, FlightDeckOptions, FlightDeckSetupPhase, FlightDeckUpdatePhase, klaxon_lib_d_exports as Klaxon, LnavFormatBreakdown, LnavFormatValueDefinition, LnavFormatVisualComponent, MemberOf,
|
|
986
|
+
export { FLIGHTDECK_ERROR, FLIGHTDECK_INFO, FLIGHTDECK_LNAV_FORMAT, FLIGHTDECK_SETUP_PHASES, FLIGHTDECK_UPDATE_PHASES, FLIGHTDECK_WARN, FlightDeck, FlightDeckFormat, FlightDeckLog, FlightDeckLogger, FlightDeckOptions, FlightDeckSetupPhase, FlightDeckUpdatePhase, klaxon_lib_d_exports as Klaxon, LnavFormatBreakdown, LnavFormatValueDefinition, LnavFormatVisualComponent, MemberOf, isVersionNumber };
|
|
989
987
|
//# sourceMappingURL=lib.d.ts.map
|