@crowdstrike/logscale-search 1.126.0--build-684--sha-1de8e2885c1117489d131c478ebf5a572b6881cf

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.
Files changed (4) hide show
  1. package/index.d.ts +675 -0
  2. package/index.js +26936 -0
  3. package/index.js.map +6 -0
  4. package/package.json +14 -0
package/index.d.ts ADDED
@@ -0,0 +1,675 @@
1
+ /**
2
+ * @crowdstrike/logscale-search
3
+ *
4
+ * This packages allows you to embed a LogScale Search View as a WebComponent.
5
+ *
6
+ * ```ts
7
+ * // Importing the module defines the "logscale-search-view" custom element as a side-effect.
8
+ * import * as LogScaleSearchView from "@crowdstrike/logscale-search";
9
+ *
10
+ * // See documentation for `createElement`
11
+ * const element : LogScaleSearchView.SearchView = LogScaleSearchView.createElement(options);
12
+ * document.body.appendChild(element);
13
+ * ```
14
+ *
15
+ * @packageDocumentation
16
+ */
17
+
18
+ /** Common options shared by all LogScale Webcomponents
19
+ * @public
20
+ */
21
+ export declare interface CommonOptions {
22
+ /** The current unix time as millisecs. Defaults to `Date.now` if not set. */
23
+ currentTime?: number;
24
+ /** Allows you to open the webcomponent's internal shadow DOM.
25
+ *
26
+ * This is useful for writing E2E tests where you want to inspect the internal DOM of the WebComponent.
27
+ * Do this sparingly, since the internal DOM elements can change between releases of
28
+ * the webcomponents.
29
+ */
30
+ shadowRootMode?: "open" | "closed";
31
+ /** Names of experimental features to be enabled. The names of features are provided by LogScale on a case-by-case basis.
32
+ * Should be left empty or undefined by default.
33
+ */
34
+ featureFlags?: Array<string> | Record<string, boolean>;
35
+ }
36
+
37
+ /**
38
+ * The primary way of embedding a Search View.
39
+ * This function that creates a `logscale-search` webcomponent and initializes it with the provided options.
40
+ *
41
+ * ```ts
42
+ * const options : Options = {
43
+ * apiURL: "https://...",
44
+ * theme: "dark",
45
+ * repoOrViewName: "my-repo",
46
+ * // ...
47
+ * };
48
+ *
49
+ * const element : SearchView = createElement(options);
50
+ * ```
51
+ *
52
+ * ## Callbacks
53
+ * Methods for registering callbacks for events happening within a LogScale SearchView are exposed on the SearchView class.
54
+ *
55
+ * ```ts
56
+ * element.onQueryChanged((query: Query) => {
57
+ * console.log("query changed: ", query);
58
+ * });
59
+ * ```
60
+ *
61
+ * ## Updating the SearchView
62
+ * SearchView can be updated after initialization through methods on the SearchView class.
63
+ *
64
+ * ```ts
65
+ * // update the query string and run the query immediately
66
+ * element.setQueryString("groupBy(method)", {run: true});
67
+ * ```
68
+ *
69
+ * @public
70
+ */
71
+ export declare function createElement(options: Options): SearchView;
72
+
73
+ /**
74
+ * A column type for inserting links from based on row values.
75
+ *
76
+ * @public
77
+ */
78
+ export declare type CustomLinkColumn = {
79
+ type: "link";
80
+ width?: number;
81
+ header: string;
82
+ /**
83
+ * The template describing how to create a href.
84
+ *
85
+ * See https://library.humio.com/data-analysis/template-language-expressions.html for information
86
+ * on how to use the LogScale Template Language
87
+ */
88
+ hrefTemplate: string;
89
+ /**
90
+ * The template describing how to create the text to be displayed inside the cell.
91
+ * Defaults to the value of `hrefTemplate`.
92
+ *
93
+ * See https://library.humio.com/data-analysis/template-language-expressions.html for information
94
+ * on how to use the LogScale Template Language
95
+ */
96
+ textTemplate?: string;
97
+ openInNewBrowserTab: boolean;
98
+ /**
99
+ * Specify whether to display as a button or a link.
100
+ */
101
+ style: "button" | "link";
102
+ };
103
+
104
+ /**
105
+ * Custom Link interaction type.
106
+ *
107
+ * @public
108
+ */
109
+ export declare type CustomLinkInteraction = {
110
+ type: "customLink";
111
+ urlTemplate: string;
112
+ openInNewTab?: boolean;
113
+ urlEncodeArgs?: boolean;
114
+ } & SharedInteractionProperties;
115
+
116
+ /**
117
+ * A NavigationTarget for LogScale Dashboard.
118
+ *
119
+ * @public
120
+ */
121
+ export declare type DashbboardNavigationTarget = {
122
+ type: "dashboard";
123
+ targetInfo: DashboardNavigationTargetInfo;
124
+ };
125
+
126
+ /**
127
+ * Used to prefix queries on a LogScale Dashboard.
128
+ *
129
+ * @public
130
+ */
131
+ export declare type DashboardFilter = string | {
132
+ /** Id of an existing filter on the dashboard. */
133
+ id: string;
134
+ };
135
+
136
+ /**
137
+ * Dashboard Link interaction type.
138
+ * If `onNavigationTargetChange` hook is implemented, these interactions will
139
+ * trigger a navigation target change, triggering the `onNavigationTargetChange` hook
140
+ * passing a `DashboardNavigationTarget` as the argument.
141
+ *
142
+ * @public
143
+ */
144
+ export declare type DashboardLinkInteraction = {
145
+ type: "dashboardLink";
146
+ dashboardName: string;
147
+ package?: string;
148
+ dashboardRepo?: string;
149
+ dashboardId?: string;
150
+ arguments?: Record<string, string> | null;
151
+ openInNewTab?: boolean;
152
+ useWidgetTimeWindow?: boolean;
153
+ } & SharedInteractionProperties;
154
+
155
+ /**
156
+ * The Dashboard state as set by the source of the NavigationTarget.
157
+ * This can be used to load a LogScale Dashboard in a specific state.
158
+ *
159
+ * @public
160
+ */
161
+ export declare type DashboardNavigationTargetInfo = DashboardParams & {
162
+ repoOrViewName: string;
163
+ timezone?: string;
164
+ };
165
+
166
+ /**
167
+ * Configuration of LogScale Dashboard.
168
+ * This also overlaps with `DashboardNavigationTarget.targetInfo`.
169
+ * This means that `DashboardParams` can be created from the targetInfo of a `DashboardNavigationTarget`.
170
+ *
171
+ * @public
172
+ */
173
+ export declare interface DashboardParams {
174
+ /**
175
+ * A reference to a dashboard.
176
+ */
177
+ dashboard: DashboardReference;
178
+ /** A map of arguments for dashboard parameters */
179
+ parameterArgs?: ParameterValues;
180
+ /**
181
+ * Optional filter which will prefix all dashboard queries.
182
+ */
183
+ filter?: DashboardFilter;
184
+ /**
185
+ * Start time used for dashboard queries.
186
+ * Note: this will only be used when querying if `sharedTime` is set to `true`.
187
+ */
188
+ start?: string;
189
+ /**
190
+ * End time used for dashboard queries.
191
+ * Note: this will only be used when querying if `sharedTime` is set to `true`.
192
+ */
193
+ end?: string;
194
+ /** Set to true to make the dashboard `live`. Defaults to `false` */
195
+ isLive?: boolean;
196
+ /**
197
+ * Set to `true` to make all dashboard queries use `start` and `end` as time window.
198
+ */
199
+ sharedTime?: boolean;
200
+ }
201
+
202
+ /**
203
+ * A reference to a LogScale Dashboard.
204
+ *
205
+ * @public
206
+ */
207
+ export declare type DashboardReference = {
208
+ name: string;
209
+ /**
210
+ * Package containing the dashboard. E.g. "my-org/dashboards".
211
+ * If omitted the dashboard will be found in dashboards that have no package.
212
+ */
213
+ package?: string;
214
+ } | {
215
+ id: string;
216
+ };
217
+
218
+ /**
219
+ * Search view Edit state.
220
+ * Use this when you need to load / put a LogScale Search view in an edit state to allow editing of LogScale assets
221
+ * from the Search view.
222
+ *
223
+ * @public
224
+ */
225
+ export declare type EditState = {
226
+ savedQueryId: string;
227
+ } | {
228
+ dashboardId: string;
229
+ widgetId?: string;
230
+ } | {
231
+ alertId: string;
232
+ } | {
233
+ filterAlertId: string;
234
+ } | {
235
+ scheduledSearchId: string;
236
+ };
237
+
238
+ /**
239
+ * Column defintions for the Event List widget.
240
+ *
241
+ * @public */
242
+ export declare type EventListColumn = FieldColumn | CustomLinkColumn | FieldListColumn;
243
+
244
+ /**
245
+ * A column type displaying field values as is.
246
+ *
247
+ * @public
248
+ */
249
+ export declare type FieldColumn = {
250
+ type: "field";
251
+ width?: number | "content";
252
+ /** The field for which the column should display values. */
253
+ fieldName: string;
254
+ /** Set a custom header for the column. Defaults to the value of `fieldName`. */
255
+ header?: string;
256
+ };
257
+
258
+ /**
259
+ * A column type for displaying all field values.
260
+ *
261
+ * @public
262
+ */
263
+ export declare type FieldListColumn = {
264
+ type: "fieldList";
265
+ width?: number;
266
+ header: string;
267
+ /** group options with the same prefix together, e.g. user.firstName and user.lastName */
268
+ groupByPrefix?: boolean;
269
+ };
270
+
271
+ /**
272
+ * LogScale Interactions.
273
+ * See [documentation](https://library.humio.com/data-analysis/dashboards-interactions.html) for more information.
274
+ *
275
+ * @public
276
+ */
277
+ export declare type Interaction = CustomLinkInteraction | SearchLinkInteraction | DashboardLinkInteraction | UpdateParametersInteraction;
278
+
279
+ /**
280
+ * Configure conditions to control when an interaction should be available.
281
+ *
282
+ * @public
283
+ */
284
+ export declare type InteractionCondition = {
285
+ "operator": "present" | "not-present";
286
+ "fieldName": string;
287
+ } | {
288
+ "operator": "starts-with" | "ends-with" | "equal" | "not-equal" | "contains" | "not-contains";
289
+ "fieldName": string;
290
+ "argument": string;
291
+ };
292
+
293
+ /**
294
+ * The NavigationTarget type specifies the target of a LogScale navigation event.
295
+ * These are handled by the `onNavigationTargetChange` hook. Sources of Navigation targets are:
296
+ * - Internal LogScale links
297
+ * - LogScale Interactions
298
+ *
299
+ * @public
300
+ */
301
+ export declare type NavigationTarget = SearchNavigationTarget | DashbboardNavigationTarget;
302
+
303
+ /**
304
+ * Initialization options.
305
+ *
306
+ * @public
307
+ */
308
+ export declare interface Options extends CommonOptions, SearchViewParams {
309
+ /** Base URL where the LogScale cluster is accessed. */
310
+ apiURL: string;
311
+ /** Name of LogScale repository or view */
312
+ repoOrViewName: string;
313
+ /** Will initialize the webcomponent in light or dark mode. The theme can be switched through the `setTheme()` method after initialization. */
314
+ theme: 'light' | 'dark';
315
+ /** If the LSP websocket server is accessed from a different URL than the `apiUrl`, you can set this. */
316
+ lspURL?: string;
317
+ /** If provided, this token will be passed in the Authentication header as a Bearer token.
318
+ * This can be a user's personal API token or an OICD token.
319
+ *
320
+ * This method of setting the authentication token is not recommended, since it exposes the authorization token to be read from JavaScript.
321
+ * Consider using a secure HTTP-only cookie instead.
322
+ */
323
+ authToken?: string;
324
+ /** If provided, HTTP calls will have the "X-CSRF-Token" header set to this value. */
325
+ csrfToken?: string;
326
+ /** Language to start the webcomponent in. */
327
+ locale?: "jp" | "en";
328
+ /** Advanced feature: Set the language version to be used. This depends on the backend configuration and might crash if set inappropriately. */
329
+ languageVersion?: string;
330
+ /**
331
+ * Set a custom date time format to be used when formatting timestamps in Event list and Table widgets.
332
+ * See [documentation](https://library.humio.com/data-analysis/functions-formattime.html#query-function-formattime-formattime-format)
333
+ * to get more information.
334
+ *
335
+ * Defaults to `"%F %T.%L"`
336
+ */
337
+ dateTimeFormat?: string;
338
+ /**
339
+ * Set this to enable automatic links for showing events for groupBy fields.
340
+ * Default to `false`.
341
+ */
342
+ enableGroupEventInteractionInTable?: boolean;
343
+ /** Set a custom time zone. */
344
+ timezone?: TimeZone;
345
+ /**
346
+ * Set LogScale interactions to be available on widgets.
347
+ * See [interactions documentation](https://library.humio.com/data-analysis/dashboards-interactions.html) for more information.
348
+ *
349
+ * Note: `hostInteractions` can only be configured through the host application and will not be configurable through the
350
+ * interactions panel inside LogScale.
351
+ */
352
+ hostInteractions?: Array<Interaction>;
353
+ /**
354
+ * Hook for handling LogScale navigation targets, e.g. navigating from SearchView to Dashboard or vice versa.
355
+ *
356
+ * ### IMPORTANT
357
+ * #### If ommitted
358
+ * This component instance will essentially work in isolation. This means that:
359
+ * - Internal LogScale links to other views will not work.
360
+ * - Interactions with a target to another view type will be excluded.
361
+ *
362
+ * @param navigationTarget
363
+ */
364
+ onNavigationTargetChange?: (navigationTarget: NavigationTarget) => void;
365
+ /**
366
+ * List of LogScale repositories and views available for selection in the repository or view selector.
367
+ */
368
+ reposAndViews?: RepoOrViewOption[];
369
+ /**
370
+ * The default columns that will be shown in the Event List.
371
+ * Defaults to
372
+ * ```
373
+ * [
374
+ * { type: "field", fieldName: "@timestamp" },
375
+ * { type: "field", fieldName: "@rawstring" },
376
+ * ]
377
+ * ```
378
+ */
379
+ columns?: Array<EventListColumn>;
380
+ /**
381
+ * Control if the fields panel should be open by default.
382
+ * Defaults to `true`.
383
+ */
384
+ canOpenFieldsPanelOnStart?: boolean;
385
+ /**
386
+ * Optional flag to show "Dashboard widget" save option in Search view.
387
+ * Defaults to `false`
388
+ */
389
+ showDashboardWidgetSaveOption?: boolean;
390
+ /**
391
+ * Optional flag to enable interactions panel in Search view.
392
+ * This is required to be able to configure `dynamicInteractions` inside LogScale.
393
+ * Defaults to `false`.
394
+ */
395
+ showInteractionsPanel?: boolean;
396
+ }
397
+
398
+ /**
399
+ * A value for a visualization configuration option.
400
+ *
401
+ * @public
402
+ */
403
+ export declare type OptionValue = string | number | boolean | Array<OptionValue> | OptionValues;
404
+
405
+ /**
406
+ * Options for visualization configuration.
407
+ *
408
+ * @public
409
+ */
410
+ export declare type OptionValues = {
411
+ [key: string]: OptionValue;
412
+ };
413
+
414
+ /**
415
+ * LogScale parameter values is a map with parameter ids as keys,
416
+ * and either a string or a string array as single / multi value parameter args, respectively.
417
+ *
418
+ * @public
419
+ */
420
+ export declare type ParameterValues = Record<string, string | string[]>;
421
+
422
+ /**
423
+ * LogScale query.
424
+ *
425
+ * @public
426
+ */
427
+ export declare type Query = {
428
+ queryString: string;
429
+ /** Arguments for parameters in `query`. */
430
+ arguments?: {
431
+ [key: string]: string;
432
+ };
433
+ start: string;
434
+ end?: string;
435
+ isLive: boolean;
436
+ around?: QueryPaginationOptions;
437
+ };
438
+
439
+ /**
440
+ * Options to specify what events to include in a result for a query around an event.
441
+ *
442
+ * @public
443
+ */
444
+ export declare type QueryPaginationOptions = {
445
+ /** The id of the event to center query around. */
446
+ eventId: String;
447
+ /** Needs to match the @timestamp field value for the event matching `eventId`. */
448
+ timestamp: number;
449
+ /** The amound of events to query for before the event matching `eventId` */
450
+ numberOfEventsBefore: number;
451
+ /** The amound of events to query for after the event matching `eventId` */
452
+ numberOfEventsAfter: number;
453
+ };
454
+
455
+ /**
456
+ * A repository or view option for the LogScale Search view Repository or View selector.
457
+ *
458
+ * @public */
459
+ export declare type RepoOrViewOption = {
460
+ name: string;
461
+ label: string;
462
+ type: "repo" | "view";
463
+ };
464
+
465
+ /**
466
+ * Search Link interaction type.
467
+ * If `onNavigationTargetChange` hook is implemented, these interactions will
468
+ * trigger a navigation target change, triggering the `onNavigationTargetChange` hook
469
+ * passing a `SearchNavigationTarget` as the argument.
470
+ *
471
+ * @public
472
+ */
473
+ export declare type SearchLinkInteraction = {
474
+ type: "searchLink";
475
+ queryString: string;
476
+ repoOrViewName?: string | null;
477
+ arguments?: Record<string, string> | null;
478
+ openInNewTab?: boolean;
479
+ useWidgetTimeWindow?: boolean;
480
+ } & SharedInteractionProperties;
481
+
482
+ /**
483
+ * A NavigationTarget for LogScale Search view.
484
+ *
485
+ * @public
486
+ */
487
+ export declare type SearchNavigationTarget = {
488
+ type: "search";
489
+ targetInfo: SearchNavigationTargetInfo;
490
+ };
491
+
492
+ /**
493
+ * The Search state as set by the source of the NavigationTarget.
494
+ * This can be used to load a LogScale Search view in a specific state.
495
+ *
496
+ * @public
497
+ */
498
+ export declare type SearchNavigationTargetInfo = SearchViewParams & {
499
+ repoOrViewName: string;
500
+ timezone?: string;
501
+ };
502
+
503
+ /**
504
+ * Custom element that embeds the LogScale Search view.
505
+ *
506
+ * @public
507
+ */
508
+ export declare class SearchView extends WebcomponentBase<Options> {
509
+ /**
510
+ * Set the query string of the SearchView query editor.
511
+ *
512
+ * @param queryString - the query string to set.
513
+ * @param options - optional options to pass when setting the query string to allow to execute query immediately.
514
+ *
515
+ * @public
516
+ */
517
+ setQueryString(queryString: string, options?: SetQueryStringOptions): void;
518
+ /**
519
+ * Implement this hook to receive notifications on changes to the query.
520
+ *
521
+ * @param callback - function for handling notifications of query changes.
522
+ *
523
+ * @public
524
+ */
525
+ onQueryChange(callback: (query: Query) => void | null): void;
526
+ /**
527
+ * Implement this hook to receive notifications on query submissions.
528
+ *
529
+ * @param callback - function for handling notifications of query submissions.
530
+ *
531
+ * @public
532
+ */
533
+ onQuerySubmit(callback: (query: Query) => void | null): void;
534
+ /**
535
+ * Implement this hook to receive notifications on query results.
536
+ *
537
+ * @param callback - function for handling notifications of query results.
538
+ *
539
+ * @public
540
+ */
541
+ onQueryResult(callback: (filter?: string) => void | null): void;
542
+ /**
543
+ * Implement this hook to receive notifications about changes to the state of the Search view.
544
+ *
545
+ * Use this if you e.g. want to serialize / keep local state of SearchView.
546
+ * @param callback - function for handling notifications of changes to Search view state.
547
+ *
548
+ * @public
549
+ */
550
+ onSearchViewStateChanged(callback: (searchViewState: SearchNavigationTargetInfo) => void | null): void;
551
+ }
552
+
553
+ /**
554
+ * Configuration of LogScale Search view.
555
+ * This also overlaps with `SearchNavigationTarget.targetInfo`.
556
+ * This means that `SearchViewParams` can be created from the targetInfo of a `SearchNavigationTarget`.
557
+ *
558
+ * @public
559
+ */
560
+ export declare interface SearchViewParams {
561
+ /** The query string set in the query editor. */
562
+ query?: string;
563
+ /** Start of time window used when querying. */
564
+ start?: string;
565
+ /** End of time window used when querying. */
566
+ end?: string;
567
+ /** Query for events around a certain event. */
568
+ around?: QueryPaginationOptions;
569
+ /** Set to `true` to execute query as live. Defaults to `false`. */
570
+ live?: boolean;
571
+ /**
572
+ * Set the visualisation to be used when visulising query result.
573
+ * If omitted a visualisation fitting the data in the query result will be used automatically.
574
+ */
575
+ visualization?: SearchViewVisualization;
576
+ /**
577
+ * Set LogScale interactions to be available on widgets.
578
+ * See [interactions documentation](https://library.humio.com/data-analysis/dashboards-interactions.html) for more information.
579
+ *
580
+ * Note: `dynamicInteractions` can be changed through the interaction panel inside LogScale, if enabled.
581
+ */
582
+ dynamicInteractions?: Array<Interaction>;
583
+ /**
584
+ * Set the Search view in an edit state, allowing editation of certain LogScale assets.
585
+ * This is primarily useful in conjunction with `NavigationTarget`, allowing a `NavigationTarget` to set an editState
586
+ * from a previous context.
587
+ */
588
+ editState?: EditState;
589
+ /** Arguments for parameters in `query`. */
590
+ parameterArgs?: {
591
+ [key: string]: string;
592
+ };
593
+ }
594
+
595
+ /**
596
+ * A LogScale widget with configuration.
597
+ *
598
+ * @public */
599
+ export declare type SearchViewVisualization = {
600
+ type?: WidgetType;
601
+ /** The configuration options of a LogScale visualization. */
602
+ options?: OptionValues;
603
+ };
604
+
605
+ /**
606
+ * Options to use when setting query string.
607
+ *
608
+ * @public
609
+ */
610
+ export declare type SetQueryStringOptions = {
611
+ run?: boolean;
612
+ };
613
+
614
+ /**
615
+ * The shared properties of all interaction types.
616
+ *
617
+ * @public
618
+ */
619
+ export declare type SharedInteractionProperties = {
620
+ name: string;
621
+ titleTemplate?: string | null;
622
+ conditions?: Array<InteractionCondition> | null;
623
+ };
624
+
625
+ /**
626
+ * `name` should be a timezone name in the format `<Continent>/<City>` (Ex: `Asia/Tokyo`).
627
+ * For timezones that are not relative to a continent, the first part is `Etc` (Ex: `Etc/GMT-3`).
628
+ *
629
+ * If the `name` is unknown to the component, then the `fallback` timezone is chosen.
630
+ *
631
+ * @public
632
+ */
633
+ export declare type TimeZone = {
634
+ name: string;
635
+ fallback: "GMT+0" | "GMT+1" | "GMT+2" | "GMT+3" | "GMT+4" | "GMT+5" | "GMT+6" | "GMT+7" | "GMT+8" | "GMT+9" | "GMT+10" | "GMT+11" | "GMT+12" | "GMT-1" | "GMT-2" | "GMT-3" | "GMT-4" | "GMT-5" | "GMT-6" | "GMT-7" | "GMT-8" | "GMT-9" | "GMT-10" | "GMT-11" | "GMT-12" | "GMT-13" | "GMT-14";
636
+ };
637
+
638
+ /**
639
+ * Update Parameters interaction type.
640
+ * If `onNavigationTargetChange` hook is implemented, these interactions will
641
+ * trigger a navigation target change, triggering the `onNavigationTargetChange` hook
642
+ * passing a `NavigationTarget` matching the LogScale component type as the argument,
643
+ * i.e. a `SearchNavigationTarget` when in Search view and a `DashboardNavigationTarget` when in Dashboard.
644
+ *
645
+ * @public
646
+ */
647
+ export declare type UpdateParametersInteraction = {
648
+ type: "updateParameters";
649
+ arguments?: Record<string, string> | null;
650
+ useWidgetTimeWindow?: boolean;
651
+ } & SharedInteractionProperties;
652
+
653
+ /** Base class for LogScale's webcomponents.
654
+ * @public */
655
+ export declare abstract class WebcomponentBase<Opts extends CommonOptions> extends HTMLElement {
656
+ /** Initializes the webcomponent with options.
657
+ *
658
+ * This should be called only once per webcomponent.
659
+ * You should not need to call this if you are using the `createElement` helper function.
660
+ * @public
661
+ */
662
+ init(options: Opts): void;
663
+ /** Set the UI theme to dark or light.
664
+ * @public */
665
+ setTheme(theme: "dark" | "light"): void;
666
+ }
667
+
668
+ /**
669
+ * LogScale widget types
670
+ *
671
+ * @public
672
+ */
673
+ export declare type WidgetType = "list-view" | "table-view" | "time-chart" | "pie-chart" | "bar-chart" | "scatter-chart" | "raw" | "world-map" | "sankey" | "heat-map" | "single-value" | "gauge";
674
+
675
+ export { }