From 78cbcf74d10e417e5b9273afbed957d4e3eee281 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Thu, 30 Jun 2022 16:01:08 +0100 Subject: [PATCH 01/88] Alerting: Fix normalization of alert states for panel annotations (#51637) (#51644) A bug introduced by #49259 would crash the annotations view of a panel with a linked alert rule. States are now normalized so crashes won't occur and the base state is used instead. (cherry picked from commit d63ffa314e4023eaa97d5d217617905808c7eae8) Co-authored-by: Gilles De Mey --- .betterer.results | 8 +++--- .../app/features/alerting/state/alertDef.ts | 26 ++++++++++++------- 2 files changed, 20 insertions(+), 14 deletions(-) diff --git a/.betterer.results b/.betterer.results index bf3c94c1f35..5da01728519 100644 --- a/.betterer.results +++ b/.betterer.results @@ -4281,11 +4281,11 @@ exports[`better eslint`] = { [35, 48, 3, "Unexpected any. Specify a different type.", "193409811"], [46, 46, 3, "Unexpected any. Specify a different type.", "193409811"] ], - "public/app/features/alerting/state/alertDef.ts:2887521080": [ + "public/app/features/alerting/state/alertDef.ts:1683373860": [ [78, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [159, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [174, 4, 14, "Do not use any type assertions.", "3854427458"], - [178, 36, 3, "Unexpected any. Specify a different type.", "193409811"] + [165, 34, 3, "Unexpected any. Specify a different type.", "193409811"], + [180, 4, 14, "Do not use any type assertions.", "3854427458"], + [184, 36, 3, "Unexpected any. Specify a different type.", "193409811"] ], "public/app/features/alerting/state/query_part.ts:2255335987": [ [4, 10, 3, "Unexpected any. Specify a different type.", "193409811"], diff --git a/public/app/features/alerting/state/alertDef.ts b/public/app/features/alerting/state/alertDef.ts index de4f61cf7a6..41f0d3e9660 100644 --- a/public/app/features/alerting/state/alertDef.ts +++ b/public/app/features/alerting/state/alertDef.ts @@ -81,8 +81,14 @@ function createReducerPart(model: any) { return new QueryPart(model, def); } +// state can also contain a "Reason", ie. "Alerting (NoData)" which indicates that the actual state is "Alerting" but +// the reason it is set to "Alerting" is "NoData"; a lack of data points to evaluate. +function normalizeAlertState(state: string) { + return state.toLowerCase().replace(/_/g, '').split(' ')[0]; +} + function getStateDisplayModel(state: string) { - const normalizedState = state.toLowerCase().replace(/_/g, ''); + const normalizedState = normalizeAlertState(state); switch (normalizedState) { case 'normal': @@ -121,13 +127,6 @@ function getStateDisplayModel(state: string) { stateClass: 'alert-state-warning', }; } - case 'unknown': { - return { - text: 'UNKNOWN', - iconClass: 'question-circle', - stateClass: '.alert-state-paused', - }; - } case 'firing': { return { @@ -152,9 +151,16 @@ function getStateDisplayModel(state: string) { stateClass: 'alert-state-critical', }; } - } - throw { message: 'Unknown alert state' }; + case 'unknown': + default: { + return { + text: 'UNKNOWN', + iconClass: 'question-circle', + stateClass: '.alert-state-paused', + }; + } + } } function joinEvalMatches(matches: any, separator: string) { From 517627a94d8cc460ea0440e36b4830e5fefb1ec7 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Thu, 30 Jun 2022 18:36:20 +0100 Subject: [PATCH 02/88] Alerting: Better metrics and renamed BrowserScreenshotService (#51564) (#51649) (cherry picked from commit d59db0b8e6da0cba233ed5325f5ca4e048d27555) Co-authored-by: George Robinson --- pkg/services/ngalert/image/service.go | 2 +- pkg/services/screenshot/screenshot.go | 147 +++++++++++---------- pkg/services/screenshot/screenshot_test.go | 2 +- 3 files changed, 80 insertions(+), 71 deletions(-) diff --git a/pkg/services/ngalert/image/service.go b/pkg/services/ngalert/image/service.go index 68111528372..75e16c6e3d2 100644 --- a/pkg/services/ngalert/image/service.go +++ b/pkg/services/ngalert/image/service.go @@ -66,8 +66,8 @@ func NewScreenshotImageServiceFromCfg(cfg *setting.Cfg, metrics prometheus.Regis }, nil } - s := screenshot.NewBrowserScreenshotService(ds, rs) // Image uploading is an optional feature of screenshots + s := screenshot.NewRemoteRenderScreenshotService(ds, rs) if cfg.UnifiedAlerting.Screenshots.UploadExternalImageStorage { u, err := imguploader.NewImageUploader() if err != nil { diff --git a/pkg/services/screenshot/screenshot.go b/pkg/services/screenshot/screenshot.go index e0a4157e5fb..4295d0d9b09 100644 --- a/pkg/services/screenshot/screenshot.go +++ b/pkg/services/screenshot/screenshot.go @@ -6,6 +6,7 @@ import ( "fmt" "net/url" "path" + "strconv" "time" gocache "github.com/patrickmn/go-cache" @@ -81,71 +82,6 @@ type ScreenshotService interface { Take(ctx context.Context, opts ScreenshotOptions) (*Screenshot, error) } -// BrowserScreenshotService takes screenshots using a headless browser. -type BrowserScreenshotService struct { - ds dashboards.DashboardService - rs rendering.Service -} - -func NewBrowserScreenshotService(ds dashboards.DashboardService, rs rendering.Service) ScreenshotService { - return &BrowserScreenshotService{ - ds: ds, - rs: rs, - } -} - -// Take returns a screenshot or an error if either the dashboard does not exist -// or it failed to screenshot the dashboard. It uses both the context and the -// timeout in ScreenshotOptions, however the timeout in ScreenshotOptions is -// sent to the remote browser where it is used as a client timeout. -func (s *BrowserScreenshotService) Take(ctx context.Context, opts ScreenshotOptions) (*Screenshot, error) { - q := models.GetDashboardQuery{Uid: opts.DashboardUID} - if err := s.ds.GetDashboard(ctx, &q); err != nil { - return nil, err - } - - opts = opts.SetDefaults() - - // Compute the URL to screenshot. - renderPath := path.Join("d-solo", q.Result.Uid, q.Result.Slug) - url := &url.URL{} - url.Path = renderPath - qParams := url.Query() - qParams.Add("orgId", fmt.Sprint(q.Result.OrgId)) - if opts.PanelID != 0 { - qParams.Add("panelId", fmt.Sprint(opts.PanelID)) - } - url.RawQuery = qParams.Encode() - path := url.String() - - renderOpts := rendering.Opts{ - AuthOpts: rendering.AuthOpts{ - OrgID: q.Result.OrgId, - OrgRole: models.ROLE_ADMIN, - }, - ErrorOpts: rendering.ErrorOpts{ - ErrorConcurrentLimitReached: true, - ErrorRenderUnavailable: true, - }, - TimeoutOpts: rendering.TimeoutOpts{ - Timeout: opts.Timeout, - }, - Width: opts.Width, - Height: opts.Height, - Theme: opts.Theme, - ConcurrentLimit: setting.AlertingRenderLimit, - Path: path, - } - - result, err := s.rs.Render(ctx, renderOpts, nil) - if err != nil { - return nil, fmt.Errorf("failed to take screenshot: %w", err) - } - - screenshot := Screenshot{Path: result.FilePath} - return &screenshot, nil -} - // CachableScreenshotService caches screenshots. type CachableScreenshotService struct { cache *gocache.Cache @@ -203,7 +139,7 @@ func (s *NoopScreenshotService) Take(_ context.Context, _ ScreenshotOptions) (*S type ObservableScreenshotService struct { service ScreenshotService duration prometheus.Histogram - failures prometheus.Counter + failures *prometheus.CounterVec successes prometheus.Counter } @@ -216,11 +152,11 @@ func NewObservableScreenshotService(r prometheus.Registerer, service ScreenshotS Namespace: namespace, Subsystem: subsystem, }), - failures: promauto.With(r).NewCounter(prometheus.CounterOpts{ + failures: promauto.With(r).NewCounterVec(prometheus.CounterOpts{ Name: "failures_total", Namespace: namespace, Subsystem: subsystem, - }), + }, []string{"reason"}), successes: promauto.With(r).NewCounter(prometheus.CounterOpts{ Name: "successes_total", Namespace: namespace, @@ -235,13 +171,86 @@ func (s *ObservableScreenshotService) Take(ctx context.Context, opts ScreenshotO screenshot, err := s.service.Take(ctx, opts) if err != nil { - defer s.failures.Inc() + if errors.Is(err, models.ErrDashboardNotFound) { + defer s.failures.With(prometheus.Labels{ + "reason": "dashboard_not_found", + }).Inc() + } else if errors.Is(err, context.Canceled) { + defer s.failures.With(prometheus.Labels{ + "reason": "context_canceled", + }).Inc() + } else { + defer s.failures.With(prometheus.Labels{ + "reason": "error", + }).Inc() + } } else { defer s.successes.Inc() } return screenshot, err } +// RemoteRenderScreenshotService takes screenshots using a remote render service. +type RemoteRenderScreenshotService struct { + ds dashboards.DashboardService + rs rendering.Service +} + +func NewRemoteRenderScreenshotService(ds dashboards.DashboardService, rs rendering.Service) ScreenshotService { + return &RemoteRenderScreenshotService{ + ds: ds, + rs: rs, + } +} + +// Take returns a screenshot or an error if either the dashboard does not exist or +// the service failed to screenshot the dashboard. It uses both the context and the +// timeout in ScreenshotOptions, however the context is used in any database queries +// and the request to the remote render service, while the timeout in ScreenshotOptions +// is passed to the remote render service where it is used as a client timeout. It is +// not recommended to pass a context without a deadline. +func (s *RemoteRenderScreenshotService) Take(ctx context.Context, opts ScreenshotOptions) (*Screenshot, error) { + q := models.GetDashboardQuery{Uid: opts.DashboardUID} + if err := s.ds.GetDashboard(ctx, &q); err != nil { + return nil, err + } + + u := url.URL{} + u.Path = path.Join("d-solo", q.Result.Uid, q.Result.Slug) + p := u.Query() + p.Add("orgId", strconv.FormatInt(q.Result.OrgId, 10)) + p.Add("panelId", strconv.FormatInt(opts.PanelID, 10)) + u.RawQuery = p.Encode() + + opts = opts.SetDefaults() + renderOpts := rendering.Opts{ + AuthOpts: rendering.AuthOpts{ + OrgID: q.Result.OrgId, + OrgRole: models.ROLE_ADMIN, + }, + ErrorOpts: rendering.ErrorOpts{ + ErrorConcurrentLimitReached: true, + ErrorRenderUnavailable: true, + }, + TimeoutOpts: rendering.TimeoutOpts{ + Timeout: opts.Timeout, + }, + Width: opts.Width, + Height: opts.Height, + Theme: opts.Theme, + ConcurrentLimit: setting.AlertingRenderLimit, + Path: u.String(), + } + + result, err := s.rs.Render(ctx, renderOpts, nil) + if err != nil { + return nil, fmt.Errorf("failed to take screenshot: %w", err) + } + + screenshot := Screenshot{Path: result.FilePath} + return &screenshot, nil +} + type ScreenshotUnavailableService struct{} func (s *ScreenshotUnavailableService) Take(_ context.Context, _ ScreenshotOptions) (*Screenshot, error) { diff --git a/pkg/services/screenshot/screenshot_test.go b/pkg/services/screenshot/screenshot_test.go index 9cc912a6d42..7735a4fb039 100644 --- a/pkg/services/screenshot/screenshot_test.go +++ b/pkg/services/screenshot/screenshot_test.go @@ -76,7 +76,7 @@ func TestBrowserScreenshotService(t *testing.T) { d := dashboards.FakeDashboardService{} r := rendering.NewMockService(c) - s := NewBrowserScreenshotService(&d, r) + s := NewRemoteRenderScreenshotService(&d, r) // a non-existent dashboard should return error d.On("GetDashboard", mock.Anything, mock.AnythingOfType("*models.GetDashboardQuery")).Return(models.ErrDashboardNotFound).Once() From 964adae477eb633c7bb4df92f36382cbb56a0539 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Fri, 1 Jul 2022 09:18:21 +0100 Subject: [PATCH 03/88] Alerting: Remove withStoredImage and change forEachFunc (#51384) (#51641) (cherry picked from commit 7fea330dc1ae3cfdbc67c5e7611b42fdcf6d5c7f) Co-authored-by: George Robinson --- .../ngalert/notifier/channels/alertmanager.go | 4 +- .../ngalert/notifier/channels/discord.go | 6 +- .../ngalert/notifier/channels/email.go | 22 +++-- .../ngalert/notifier/channels/googlechat.go | 4 +- .../ngalert/notifier/channels/kafka.go | 4 +- .../ngalert/notifier/channels/opsgenie.go | 4 +- .../ngalert/notifier/channels/pagerduty.go | 4 +- .../ngalert/notifier/channels/pushover.go | 61 +++++++------- .../ngalert/notifier/channels/sensugo.go | 10 +-- .../ngalert/notifier/channels/slack.go | 13 +-- .../ngalert/notifier/channels/teams.go | 4 +- .../ngalert/notifier/channels/telegram.go | 46 +++++------ .../ngalert/notifier/channels/threema.go | 4 +- .../ngalert/notifier/channels/util.go | 82 +++++++++---------- .../ngalert/notifier/channels/util_test.go | 4 +- .../ngalert/notifier/channels/victorops.go | 4 +- .../ngalert/notifier/channels/webhook.go | 4 +- 17 files changed, 127 insertions(+), 153 deletions(-) diff --git a/pkg/services/ngalert/notifier/channels/alertmanager.go b/pkg/services/ngalert/notifier/channels/alertmanager.go index b7405dafb5d..9357b14a578 100644 --- a/pkg/services/ngalert/notifier/channels/alertmanager.go +++ b/pkg/services/ngalert/notifier/channels/alertmanager.go @@ -102,10 +102,10 @@ func (n *AlertmanagerNotifier) Notify(ctx context.Context, as ...*types.Alert) ( } _ = withStoredImages(ctx, n.logger, n.images, - func(index int, image *ngmodels.Image) error { + func(index int, image ngmodels.Image) error { // If there is an image for this alert and the image has been uploaded // to a public URL then include it as an annotation - if image != nil && image.URL != "" { + if image.URL != "" { as[index].Annotations["image"] = model.LabelValue(image.URL) } return nil diff --git a/pkg/services/ngalert/notifier/channels/discord.go b/pkg/services/ngalert/notifier/channels/discord.go index 48fac488c71..a6296b5a96f 100644 --- a/pkg/services/ngalert/notifier/channels/discord.go +++ b/pkg/services/ngalert/notifier/channels/discord.go @@ -199,15 +199,11 @@ func (d DiscordNotifier) constructAttachments(ctx context.Context, as []*types.A attachments := make([]discordAttachment, 0) _ = withStoredImages(ctx, d.log, d.images, - func(index int, image *ngmodels.Image) error { + func(index int, image ngmodels.Image) error { if embedQuota < 1 { return ErrImagesDone } - if image == nil { - return nil - } - if len(image.URL) > 0 { attachments = append(attachments, discordAttachment{ url: image.URL, diff --git a/pkg/services/ngalert/notifier/channels/email.go b/pkg/services/ngalert/notifier/channels/email.go index ebf7dac61b8..b33ab8dff6b 100644 --- a/pkg/services/ngalert/notifier/channels/email.go +++ b/pkg/services/ngalert/notifier/channels/email.go @@ -110,18 +110,16 @@ func (en *EmailNotifier) Notify(ctx context.Context, alerts ...*types.Alert) (bo // Extend alerts data with images, if available. var embeddedFiles []string _ = withStoredImages(ctx, en.log, en.images, - func(index int, image *ngmodels.Image) error { - if image != nil { - if len(image.URL) != 0 { - data.Alerts[index].ImageURL = image.URL - } else if len(image.Path) != 0 { - _, err := os.Stat(image.Path) - if err == nil { - data.Alerts[index].EmbeddedImage = path.Base(image.Path) - embeddedFiles = append(embeddedFiles, image.Path) - } else { - en.log.Warn("failed to get image file for email attachment", "file", image.Path, "err", err) - } + func(index int, image ngmodels.Image) error { + if len(image.URL) != 0 { + data.Alerts[index].ImageURL = image.URL + } else if len(image.Path) != 0 { + _, err := os.Stat(image.Path) + if err == nil { + data.Alerts[index].EmbeddedImage = path.Base(image.Path) + embeddedFiles = append(embeddedFiles, image.Path) + } else { + en.log.Warn("failed to get image file for email attachment", "file", image.Path, "err", err) } } return nil diff --git a/pkg/services/ngalert/notifier/channels/googlechat.go b/pkg/services/ngalert/notifier/channels/googlechat.go index 2e53e51a7fe..cd9dc30c359 100644 --- a/pkg/services/ngalert/notifier/channels/googlechat.go +++ b/pkg/services/ngalert/notifier/channels/googlechat.go @@ -191,8 +191,8 @@ func (gcn *GoogleChatNotifier) buildScreenshotCard(ctx context.Context, alerts [ } _ = withStoredImages(ctx, gcn.log, gcn.images, - func(index int, image *ngmodels.Image) error { - if image == nil || len(image.URL) == 0 { + func(index int, image ngmodels.Image) error { + if len(image.URL) == 0 { return nil } diff --git a/pkg/services/ngalert/notifier/channels/kafka.go b/pkg/services/ngalert/notifier/channels/kafka.go index b812fe2cc49..e97c0173662 100644 --- a/pkg/services/ngalert/notifier/channels/kafka.go +++ b/pkg/services/ngalert/notifier/channels/kafka.go @@ -107,8 +107,8 @@ func (kn *KafkaNotifier) Notify(ctx context.Context, as ...*types.Alert) (bool, var contexts []interface{} _ = withStoredImages(ctx, kn.log, kn.images, - func(index int, image *ngmodels.Image) error { - if image != nil && image.URL != "" { + func(_ int, image ngmodels.Image) error { + if image.URL != "" { imageJSON := simplejson.New() imageJSON.Set("type", "image") imageJSON.Set("src", image.URL) diff --git a/pkg/services/ngalert/notifier/channels/opsgenie.go b/pkg/services/ngalert/notifier/channels/opsgenie.go index b0737161b14..1e55b66b158 100644 --- a/pkg/services/ngalert/notifier/channels/opsgenie.go +++ b/pkg/services/ngalert/notifier/channels/opsgenie.go @@ -242,8 +242,8 @@ func (on *OpsgenieNotifier) buildOpsgenieMessage(ctx context.Context, alerts mod images := []string{} _ = withStoredImages(ctx, on.log, on.images, - func(index int, image *ngmodels.Image) error { - if image == nil || len(image.URL) == 0 { + func(_ int, image ngmodels.Image) error { + if len(image.URL) == 0 { return nil } images = append(images, image.URL) diff --git a/pkg/services/ngalert/notifier/channels/pagerduty.go b/pkg/services/ngalert/notifier/channels/pagerduty.go index ec50c3f37ff..5e9491409e5 100644 --- a/pkg/services/ngalert/notifier/channels/pagerduty.go +++ b/pkg/services/ngalert/notifier/channels/pagerduty.go @@ -189,8 +189,8 @@ func (pn *PagerdutyNotifier) buildPagerdutyMessage(ctx context.Context, alerts m } _ = withStoredImages(ctx, pn.log, pn.images, - func(index int, image *ngmodels.Image) error { - if image != nil && len(image.URL) != 0 { + func(_ int, image ngmodels.Image) error { + if len(image.URL) != 0 { msg.Images = append(msg.Images, pagerDutyImage{Src: image.URL}) } diff --git a/pkg/services/ngalert/notifier/channels/pushover.go b/pkg/services/ngalert/notifier/channels/pushover.go index 0f6fb170ec4..43c107e8216 100644 --- a/pkg/services/ngalert/notifier/channels/pushover.go +++ b/pkg/services/ngalert/notifier/channels/pushover.go @@ -233,39 +233,36 @@ func (pn *PushoverNotifier) genPushoverBody(ctx context.Context, as ...*types.Al // Pushover supports at most one image attachment with a maximum size of pushoverMaxFileSize. // If the image is larger than pushoverMaxFileSize then return an error. - _ = withStoredImages(ctx, pn.log, pn.images, func(index int, image *ngmodels.Image) error { - if image != nil { - f, err := os.Open(image.Path) - if err != nil { - return fmt.Errorf("failed to open the image: %w", err) - } - defer func() { - if err := f.Close(); err != nil { - pn.log.Error("failed to close the image", "file", image.Path) - } - }() - - fileInfo, err := f.Stat() - if err != nil { - return fmt.Errorf("failed to stat the image: %w", err) - } - - if fileInfo.Size() > pushoverMaxFileSize { - return fmt.Errorf("image would exceeded maximum file size: %d", fileInfo.Size()) - } - - fw, err := w.CreateFormFile("attachment", image.Path) - if err != nil { - return fmt.Errorf("failed to create form file for the image: %w", err) - } - - if _, err = io.Copy(fw, f); err != nil { - return fmt.Errorf("failed to copy the image to the form file: %w", err) - } - - return ErrImagesDone + _ = withStoredImages(ctx, pn.log, pn.images, func(index int, image ngmodels.Image) error { + f, err := os.Open(image.Path) + if err != nil { + return fmt.Errorf("failed to open the image: %w", err) } - return nil + defer func() { + if err := f.Close(); err != nil { + pn.log.Error("failed to close the image", "file", image.Path) + } + }() + + fileInfo, err := f.Stat() + if err != nil { + return fmt.Errorf("failed to stat the image: %w", err) + } + + if fileInfo.Size() > pushoverMaxFileSize { + return fmt.Errorf("image would exceeded maximum file size: %d", fileInfo.Size()) + } + + fw, err := w.CreateFormFile("attachment", image.Path) + if err != nil { + return fmt.Errorf("failed to create form file for the image: %w", err) + } + + if _, err = io.Copy(fw, f); err != nil { + return fmt.Errorf("failed to copy the image to the form file: %w", err) + } + + return ErrImagesDone }, as...) var sound string diff --git a/pkg/services/ngalert/notifier/channels/sensugo.go b/pkg/services/ngalert/notifier/channels/sensugo.go index 35726d3ab8c..2407e340c3e 100644 --- a/pkg/services/ngalert/notifier/channels/sensugo.go +++ b/pkg/services/ngalert/notifier/channels/sensugo.go @@ -139,21 +139,17 @@ func (sn *SensuGoNotifier) Notify(ctx context.Context, as ...*types.Alert) (bool labels := make(map[string]string) - var imageURL string _ = withStoredImages(ctx, sn.log, sn.images, - func(index int, image *ngmodels.Image) error { + func(_ int, image ngmodels.Image) error { // If there is an image for this alert and the image has been uploaded // to a public URL then add it to the request. We cannot add more than // one image per request. - if image != nil && image.URL != "" && imageURL == "" { - imageURL = image.URL + if image.URL != "" { + labels["imageURL"] = image.URL return ErrImagesDone } return nil }, as...) - if imageURL != "" { - labels["imageURL"] = imageURL - } ruleURL := joinUrlPath(sn.tmpl.ExternalURL.String(), "/alerting/list", sn.log) labels["ruleURL"] = ruleURL diff --git a/pkg/services/ngalert/notifier/channels/slack.go b/pkg/services/ngalert/notifier/channels/slack.go index 282e4f73857..741fde200cc 100644 --- a/pkg/services/ngalert/notifier/channels/slack.go +++ b/pkg/services/ngalert/notifier/channels/slack.go @@ -319,15 +319,10 @@ func (sn *SlackNotifier) buildSlackMessage(ctx context.Context, alrts []*types.A }, } - _ = withStoredImage(ctx, sn.log, sn.images, - func(index int, image *ngmodels.Image) error { - if image != nil { - req.Attachments[0].ImageURL = image.URL - return ErrImagesDone - } - return nil - }, - 0, alrts...) + _ = withStoredImages(ctx, sn.log, sn.images, func(index int, image ngmodels.Image) error { + req.Attachments[0].ImageURL = image.URL + return ErrImagesDone + }, alrts...) if tmplErr != nil { sn.log.Warn("failed to template Slack message", "err", tmplErr.Error()) diff --git a/pkg/services/ngalert/notifier/channels/teams.go b/pkg/services/ngalert/notifier/channels/teams.go index f08f68c15b4..fd45764a5c5 100644 --- a/pkg/services/ngalert/notifier/channels/teams.go +++ b/pkg/services/ngalert/notifier/channels/teams.go @@ -95,8 +95,8 @@ func (tn *TeamsNotifier) Notify(ctx context.Context, as ...*types.Alert) (bool, images := []teamsImage{} _ = withStoredImages(ctx, tn.log, tn.images, - func(index int, image *ngmodels.Image) error { - if image != nil && len(image.URL) != 0 { + func(_ int, image ngmodels.Image) error { + if len(image.URL) != 0 { images = append(images, teamsImage{Image: image.URL}) } return nil diff --git a/pkg/services/ngalert/notifier/channels/telegram.go b/pkg/services/ngalert/notifier/channels/telegram.go index 030b7b301d2..650a390c0da 100644 --- a/pkg/services/ngalert/notifier/channels/telegram.go +++ b/pkg/services/ngalert/notifier/channels/telegram.go @@ -117,33 +117,31 @@ func (tn *TelegramNotifier) Notify(ctx context.Context, as ...*types.Alert) (boo } // Create the cmd to upload each image - _ = withStoredImages(ctx, tn.log, tn.images, func(index int, image *ngmodels.Image) error { - if image != nil { - cmd, err = tn.newWebhookSyncCmd("sendPhoto", func(w *multipart.Writer) error { - f, err := os.Open(image.Path) - if err != nil { - return fmt.Errorf("failed to open image: %w", err) - } - defer func() { - if err := f.Close(); err != nil { - tn.log.Warn("failed to close image", "err", err) - } - }() - fw, err := w.CreateFormFile("photo", image.Path) - if err != nil { - return fmt.Errorf("failed to create form file: %w", err) - } - if _, err := io.Copy(fw, f); err != nil { - return fmt.Errorf("failed to write to form file: %w", err) - } - return nil - }) + _ = withStoredImages(ctx, tn.log, tn.images, func(index int, image ngmodels.Image) error { + cmd, err = tn.newWebhookSyncCmd("sendPhoto", func(w *multipart.Writer) error { + f, err := os.Open(image.Path) if err != nil { - return fmt.Errorf("failed to create image: %w", err) + return fmt.Errorf("failed to open image: %w", err) } - if err := tn.ns.SendWebhookSync(ctx, cmd); err != nil { - return fmt.Errorf("failed to upload image to telegram: %w", err) + defer func() { + if err := f.Close(); err != nil { + tn.log.Warn("failed to close image", "err", err) + } + }() + fw, err := w.CreateFormFile("photo", image.Path) + if err != nil { + return fmt.Errorf("failed to create form file: %w", err) } + if _, err := io.Copy(fw, f); err != nil { + return fmt.Errorf("failed to write to form file: %w", err) + } + return nil + }) + if err != nil { + return fmt.Errorf("failed to create image: %w", err) + } + if err := tn.ns.SendWebhookSync(ctx, cmd); err != nil { + return fmt.Errorf("failed to upload image to telegram: %w", err) } return nil }, as...) diff --git a/pkg/services/ngalert/notifier/channels/threema.go b/pkg/services/ngalert/notifier/channels/threema.go index c75f5e99193..81f53290bb5 100644 --- a/pkg/services/ngalert/notifier/channels/threema.go +++ b/pkg/services/ngalert/notifier/channels/threema.go @@ -132,8 +132,8 @@ func (tn *ThreemaNotifier) Notify(ctx context.Context, as ...*types.Alert) (bool ) _ = withStoredImages(ctx, tn.log, tn.images, - func(index int, image *ngmodels.Image) error { - if image != nil && image.URL != "" { + func(_ int, image ngmodels.Image) error { + if image.URL != "" { message += fmt.Sprintf("*Image:* %s\n", image.URL) } return nil diff --git a/pkg/services/ngalert/notifier/channels/util.go b/pkg/services/ngalert/notifier/channels/util.go index ab9ef83bc18..130d27826cf 100644 --- a/pkg/services/ngalert/notifier/channels/util.go +++ b/pkg/services/ngalert/notifier/channels/util.go @@ -46,57 +46,51 @@ var ( ErrImagesUnavailable = errors.New("alert screenshots are unavailable") ) -// For each alert, attempts to load the models.Image for an image token -// associated with the alert, then calls forEachFunc with the index of the -// alert and the retrieved image struct. If there is no image token, or the -// image does not exist, forEachFunc will be called with a nil value for the -// image. If forEachFunc returns an error, withStoredImages will return -// immediately. If there is a runtime error retrieving images from the image -// store, withStoredImages will attempt to continue executing, after logging -// a warning. -func withStoredImages(ctx context.Context, l log.Logger, imageStore ImageStore, forEachFunc func(index int, image *models.Image) error, alerts ...*types.Alert) error { - for i := range alerts { - err := withStoredImage(ctx, l, imageStore, forEachFunc, i, alerts...) - if err != nil { - // Stop iteration as forEachFunc has found the intended image or - // iterated the maximum number of images - if errors.Is(err, ErrImagesDone) { - return nil - } - return err - } +type forEachImageFunc func(index int, image models.Image) error + +// getImage returns the image for the alert or an error. It returns a nil +// image if the alert does not have an image token or the image does not exist. +func getImage(ctx context.Context, l log.Logger, imageStore ImageStore, alert types.Alert) (*models.Image, error) { + token := getTokenFromAnnotations(alert.Annotations) + if token == "" { + return nil, nil + } + + ctx, cancelFunc := context.WithTimeout(ctx, ImageStoreTimeout) + defer cancelFunc() + + img, err := imageStore.GetImage(ctx, token) + if errors.Is(err, models.ErrImageNotFound) || errors.Is(err, ErrImagesUnavailable) { + return nil, nil + } else if err != nil { + l.Warn("failed to get image with token", "token", token, "err", err) + return nil, err + } else { + return img, nil } - return nil } -func withStoredImage(ctx context.Context, l log.Logger, imageStore ImageStore, imageFunc func(index int, image *models.Image) error, index int, alerts ...*types.Alert) error { - imgToken := getTokenFromAnnotations(alerts[index].Annotations) - if len(imgToken) == 0 { - err := imageFunc(index, nil) +// withStoredImages retrieves the image for each alert and then calls forEachFunc +// with the index of the alert and the retrieved image struct. If the alert does +// not have an image token, or the image does not exist then forEachFunc will not be +// called for that alert. If forEachFunc returns an error, withStoredImages will return +// the error and not iterate the remaining alerts. A forEachFunc can return ErrImagesDone +// to stop the iteration of remaining alerts if the intended image or maximum number of +// images have been found. +func withStoredImages(ctx context.Context, l log.Logger, imageStore ImageStore, forEachFunc forEachImageFunc, alerts ...*types.Alert) error { + for index, alert := range alerts { + img, err := getImage(ctx, l, imageStore, *alert) if err != nil { return err + } else if img != nil { + if err := forEachFunc(index, *img); err != nil { + if errors.Is(err, ErrImagesDone) { + return nil + } + return err + } } } - - timeoutCtx, cancel := context.WithTimeout(ctx, ImageStoreTimeout) - img, err := imageStore.GetImage(timeoutCtx, imgToken) - cancel() - - if errors.Is(err, models.ErrImageNotFound) || errors.Is(err, ErrImagesUnavailable) { - err := imageFunc(index, nil) - if err != nil { - return err - } - } else if err != nil { - // Ignore errors. Don't log "ImageUnavailable", which means the storage doesn't exist. - l.Warn("failed to retrieve image url from store", "err", err) - } - - err = imageFunc(index, img) - if err != nil { - return err - } - return nil } diff --git a/pkg/services/ngalert/notifier/channels/util_test.go b/pkg/services/ngalert/notifier/channels/util_test.go index beec5dc848f..36049000a59 100644 --- a/pkg/services/ngalert/notifier/channels/util_test.go +++ b/pkg/services/ngalert/notifier/channels/util_test.go @@ -45,7 +45,7 @@ func TestWithStoredImages(t *testing.T) { ) // should iterate all images - err = withStoredImages(ctx, log.New(ctx), imageStore, func(index int, image *models.Image) error { + err = withStoredImages(ctx, log.New(ctx), imageStore, func(index int, image models.Image) error { i += 1 return nil }, alerts...) @@ -54,7 +54,7 @@ func TestWithStoredImages(t *testing.T) { // should iterate just the first image i = 0 - err = withStoredImages(ctx, log.New(ctx), imageStore, func(index int, image *models.Image) error { + err = withStoredImages(ctx, log.New(ctx), imageStore, func(index int, image models.Image) error { i += 1 return ErrImagesDone }, alerts...) diff --git a/pkg/services/ngalert/notifier/channels/victorops.go b/pkg/services/ngalert/notifier/channels/victorops.go index 072ce92d5e3..cfd66db7b97 100644 --- a/pkg/services/ngalert/notifier/channels/victorops.go +++ b/pkg/services/ngalert/notifier/channels/victorops.go @@ -119,8 +119,8 @@ func (vn *VictoropsNotifier) Notify(ctx context.Context, as ...*types.Alert) (bo bodyJSON.Set("monitoring_tool", "Grafana v"+setting.BuildVersion) _ = withStoredImages(ctx, vn.log, vn.images, - func(index int, image *ngmodels.Image) error { - if image != nil && image.URL != "" { + func(index int, image ngmodels.Image) error { + if image.URL != "" { bodyJSON.Set("image_url", image.URL) return ErrImagesDone } diff --git a/pkg/services/ngalert/notifier/channels/webhook.go b/pkg/services/ngalert/notifier/channels/webhook.go index b88723277dd..4e92444cfed 100644 --- a/pkg/services/ngalert/notifier/channels/webhook.go +++ b/pkg/services/ngalert/notifier/channels/webhook.go @@ -120,8 +120,8 @@ func (wn *WebhookNotifier) Notify(ctx context.Context, as ...*types.Alert) (bool // Augment our Alert data with ImageURLs if available. _ = withStoredImages(ctx, wn.log, wn.images, - func(index int, image *ngmodels.Image) error { - if image != nil && len(image.URL) != 0 { + func(index int, image ngmodels.Image) error { + if len(image.URL) != 0 { data.Alerts[index].ImageURL = image.URL } return nil From f07abe2cd2f7a87601437c15111b18ae4d22ea2a Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Mon, 4 Jul 2022 09:09:10 +0100 Subject: [PATCH 04/88] Docs: adds new alerting diagram (#51638) (#51642) * Docs:adds new alerting diagram * Update docs/sources/alerting/_index.md Co-authored-by: Jack Baldry Co-authored-by: Jack Baldry (cherry picked from commit 64a2c4783fc336e290ae517af460e21dad9556e4) Co-authored-by: brendamuir <100768211+brendamuir@users.noreply.github.com> --- docs/sources/alerting/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sources/alerting/_index.md b/docs/sources/alerting/_index.md index f1102173c9e..87cb3c45bdd 100644 --- a/docs/sources/alerting/_index.md +++ b/docs/sources/alerting/_index.md @@ -19,7 +19,7 @@ Watch this video to learn more about Grafana Alerting: {{< vimeo 720001629 >}} The following diagram gives you an overview of how Grafana Alerting works and introduces you to some of the key concepts that work together and form the core of our flexible and powerful alerting engine. -{{< figure src="/static/img/docs/alerting/unified/about-alerting-flow-diagram.jpg" caption="Grafana Alerting overview" >}} +{{< figure src="/static/img/docs/alerting/unified/about-alerting-flow-diagram-latest.png" caption="Grafana Alerting overview" >}} 1. Alert rules From 86ebea24220350376b9c7fde9fa5c58213cbedc5 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Mon, 4 Jul 2022 09:26:06 +0100 Subject: [PATCH 05/88] StateTimeline: Try to sort time field (#51569) (#51689) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * StateTimeline: Try to sort time field * Sort frame earlier (cherry picked from commit ebb902566965f717f612923b2af8832a02a5fe29) Co-authored-by: Zoltán Bedi --- .betterer.results | 44 +++++++++---------- .../panel/state-timeline/utils.test.ts | 12 +++++ .../app/plugins/panel/state-timeline/utils.ts | 11 +++-- 3 files changed, 42 insertions(+), 25 deletions(-) diff --git a/.betterer.results b/.betterer.results index 5da01728519..5fb8bff3337 100644 --- a/.betterer.results +++ b/.betterer.results @@ -12153,31 +12153,31 @@ exports[`better eslint`] = { "public/app/plugins/panel/state-timeline/types.ts:3228907517": [ [20, 62, 3, "Unexpected any. Specify a different type.", "193409811"] ], - "public/app/plugins/panel/state-timeline/utils.test.ts:2922455252": [ + "public/app/plugins/panel/state-timeline/utils.test.ts:4199205996": [ [17, 9, 9, "Do not use any type assertions.", "3692209159"], [17, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 18, 147, "Do not use any type assertions.", "893298400"], - [82, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [88, 18, 139, "Do not use any type assertions.", "3045277193"], - [92, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 18, 150, "Do not use any type assertions.", "1747702495"], - [102, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [108, 18, 291, "Do not use any type assertions.", "3141576499"], - [124, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [130, 18, 106, "Do not use any type assertions.", "328761055"], - [134, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [165, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [222, 53, 46, "Do not use any type assertions.", "697874192"], - [222, 96, 3, "Unexpected any. Specify a different type.", "193409811"] + [90, 18, 147, "Do not use any type assertions.", "893298400"], + [94, 9, 3, "Unexpected any. Specify a different type.", "193409811"], + [100, 18, 139, "Do not use any type assertions.", "3045277193"], + [104, 9, 3, "Unexpected any. Specify a different type.", "193409811"], + [110, 18, 150, "Do not use any type assertions.", "1747702495"], + [114, 9, 3, "Unexpected any. Specify a different type.", "193409811"], + [120, 18, 291, "Do not use any type assertions.", "3141576499"], + [136, 9, 3, "Unexpected any. Specify a different type.", "193409811"], + [142, 18, 106, "Do not use any type assertions.", "328761055"], + [146, 9, 3, "Unexpected any. Specify a different type.", "193409811"], + [177, 17, 3, "Unexpected any. Specify a different type.", "193409811"], + [234, 53, 46, "Do not use any type assertions.", "697874192"], + [234, 96, 3, "Unexpected any. Specify a different type.", "193409811"] ], - "public/app/plugins/panel/state-timeline/utils.ts:1740139691": [ - [79, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [211, 19, 48, "Do not use any type assertions.", "1573487560"], - [262, 26, 11, "Do not use any type assertions.", "319541530"], - [262, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [286, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [286, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [288, 13, 3, "Unexpected any. Specify a different type.", "193409811"] + "public/app/plugins/panel/state-timeline/utils.ts:2030937583": [ + [80, 53, 3, "Unexpected any. Specify a different type.", "193409811"], + [212, 19, 48, "Do not use any type assertions.", "1573487560"], + [263, 26, 11, "Do not use any type assertions.", "319541530"], + [263, 34, 3, "Unexpected any. Specify a different type.", "193409811"], + [287, 46, 3, "Unexpected any. Specify a different type.", "193409811"], + [287, 54, 3, "Unexpected any. Specify a different type.", "193409811"], + [289, 13, 3, "Unexpected any. Specify a different type.", "193409811"] ], "public/app/plugins/panel/table-old/column_options.ts:3218485965": [ [5, 9, 3, "Unexpected any. Specify a different type.", "193409811"], diff --git a/public/app/plugins/panel/state-timeline/utils.test.ts b/public/app/plugins/panel/state-timeline/utils.test.ts index 92bdc05f3f7..d4cc5208b38 100644 --- a/public/app/plugins/panel/state-timeline/utils.test.ts +++ b/public/app/plugins/panel/state-timeline/utils.test.ts @@ -72,6 +72,18 @@ describe('prepare timeline graph', () => { ] `); }); + it('should try to sort time fields', () => { + const frames = [ + toDataFrame({ + fields: [ + { name: 'a', type: FieldType.time, values: [4, 3, 1, 2] }, + { name: 'b', values: [1, 1, 2, 2] }, + ], + }), + ]; + const result = prepareTimelineFields(frames, true, timeRange, theme); + expect(result.frames?.[0].fields[0].values.toArray()).toEqual([1, 2, 3, 4]); + }); }); describe('findNextStateIndex', () => { diff --git a/public/app/plugins/panel/state-timeline/utils.ts b/public/app/plugins/panel/state-timeline/utils.ts index c6e7756a061..83246e541cf 100644 --- a/public/app/plugins/panel/state-timeline/utils.ts +++ b/public/app/plugins/panel/state-timeline/utils.ts @@ -23,6 +23,7 @@ import { ThresholdsMode, TimeRange, } from '@grafana/data'; +import { maybeSortFrame } from '@grafana/data/src/transformations/transformers/joinDataFrames'; import { VizLegendOptions, AxisPlacement, ScaleDirection, ScaleOrientation } from '@grafana/schema'; import { FIXED_UNIT, @@ -394,9 +395,13 @@ export function prepareTimelineFields( for (let frame of series) { let isTimeseries = false; let changed = false; + let maybeSortedFrame = maybeSortFrame( + frame, + frame.fields.findIndex((f) => f.type === FieldType.time) + ); let nulledFrame = applyNullInsertThreshold({ - frame, + frame: maybeSortedFrame, refFieldPseudoMin: timeRange.from.valueOf(), refFieldPseudoMax: timeRange.to.valueOf(), }); @@ -445,11 +450,11 @@ export function prepareTimelineFields( hasTimeseries = true; if (changed) { frames.push({ - ...frame, + ...maybeSortedFrame, fields, }); } else { - frames.push(frame); + frames.push(maybeSortedFrame); } } } From b618b64677dfd410c686f67f717d96bf188092c1 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Mon, 4 Jul 2022 12:30:33 +0100 Subject: [PATCH 06/88] [v9.0.x] Chore: Make betterer tests more stable (#51706) * Chore: Make betterer tests more stable (#51703) * rewrite eslint test to not care about position of errors * changing file contents shouldn't require a betterer.results update * fix up eslint test * fix the undocumented stories test * ignore .test.ts files as well (cherry picked from commit 986b766ca066ab33b534cb189ae48e9b72c36d5b) * results... Co-authored-by: Ashley Harrison --- .betterer.results | 22815 ++++++++++++++++++++------------------------ .betterer.ts | 68 +- 2 files changed, 10383 insertions(+), 12500 deletions(-) diff --git a/.betterer.results b/.betterer.results index 5fb8bff3337..3ed65f96ec1 100644 --- a/.betterer.results +++ b/.betterer.results @@ -250,12497 +250,10344 @@ exports[`no enzyme tests`] = { exports[`better eslint`] = { value: `{ - "e2e/benchmarks/live/4-20hz-panels.spec.ts:11038257": [ - [12, 17, 10, "Do not use any type assertions.", "1579919174"], - [12, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "e2e/dashboards-suite/dashboard-templating.spec.ts:1854610528": [ - [12, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "e2e/dashboards-suite/textbox-variables.spec.ts:2500589821": [ - [36, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [62, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [88, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [111, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "e2e/panels-suite/panelEdit_queries.spec.ts:755967329": [ - [91, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/dataframe/ArrayDataFrame.ts:3562435193": [ - [8, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [69, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [96, 5, 19, "Do not use any type assertions.", "1376576629"], - [96, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/dataframe/CircularDataFrame.ts:2140225850": [ - [13, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 31, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/dataframe/DataFrameJSON.ts:478157510": [ - [29, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [109, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [119, 81, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 28, 35, "Do not use any type assertions.", "2187533774"], - [125, 29, 35, "Do not use any type assertions.", "2187533774"], - [133, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [206, 14, 13, "Do not use any type assertions.", "91934160"], - [206, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/dataframe/DataFrameView.test.ts:846982693": [ - [48, 18, 20, "Do not use any type assertions.", "1605261297"], - [48, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [95, 16, 18, "Do not use any type assertions.", "2116036165"], - [95, 31, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/dataframe/DataFrameView.ts:1735987381": [ - [15, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 16, 18, "Do not use any type assertions.", "76882239"], - [24, 16, 13, "Do not use any type assertions.", "2146830713"], - [25, 19, 9, "Do not use any type assertions.", "3692209159"], - [25, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 12, 10, "Do not use any type assertions.", "1579919174"], - [36, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 12, 10, "Do not use any type assertions.", "1579919174"], - [43, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/dataframe/MutableDataFrame.test.ts:4270112114": [ - [62, 17, 19, "Do not use any type assertions.", "3470907796"], - [62, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/dataframe/MutableDataFrame.ts:1247972239": [ - [11, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [69, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 17, 17, "Do not use any type assertions.", "2728931639"], - [81, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [83, 18, 18, "Do not use any type assertions.", "1544316478"], - [159, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [164, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [166, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [172, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [172, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [183, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [217, 16, 12, "Do not use any type assertions.", "4064292234"], - [217, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [238, 17, 12, "Do not use any type assertions.", "4064292234"], - [238, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [248, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [252, 11, 6, "Do not use any type assertions.", "1890796757"] - ], - "packages/grafana-data/src/dataframe/dimensions.ts:3083417734": [ - [3, 31, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/dataframe/frameComparisons.test.ts:3865124093": [ - [34, 46, 11, "Do not use any type assertions.", "319541530"], - [34, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 38, 16, "Do not use any type assertions.", "2939667099"], - [35, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 40, 11, "Do not use any type assertions.", "319541530"], - [38, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 30, 11, "Do not use any type assertions.", "319541530"], - [39, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/dataframe/frameComparisons.ts:2542530798": [ - [47, 17, 16, "Do not use any type assertions.", "1574635906"], - [47, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 17, 16, "Do not use any type assertions.", "4112690881"], - [48, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 29, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/dataframe/processDataFrame.test.ts:2666720230": [ - [234, 22, 42, "Do not use any type assertions.", "2139744382"], - [252, 22, 42, "Do not use any type assertions.", "2139744382"], - [265, 22, 41, "Do not use any type assertions.", "496868830"], - [287, 22, 42, "Do not use any type assertions.", "2139744382"], - [317, 18, 41, "Do not use any type assertions.", "496868830"], - [349, 22, 35, "Do not use any type assertions.", "1072159462"], - [349, 54, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/dataframe/processDataFrame.ts:3588306812": [ - [33, 36, 8, "Do not use any type assertions.", "2886818306"], - [33, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 14, 27, "Do not use any type assertions.", "2540542134"], - [38, 54, 17, "Do not use any type assertions.", "4031973525"], - [38, 76, 17, "Do not use any type assertions.", "4031973525"], - [75, 43, 17, "Do not use any type assertions.", "2943491503"], - [75, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 15, 18, "Do not use any type assertions.", "1887167983"], - [100, 5, 31, "Do not use any type assertions.", "3351532669"], - [104, 32, 17, "Do not use any type assertions.", "2943491503"], - [104, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [156, 21, 17, "Do not use any type assertions.", "2943491503"], - [156, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [182, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [195, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [220, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [301, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [303, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [308, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [312, 13, 17, "Do not use any type assertions.", "333017354"], - [316, 32, 20, "Do not use any type assertions.", "1865696917"], - [351, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [368, 13, 254, "Do not use any type assertions.", "2245550225"], - [380, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [388, 11, 252, "Do not use any type assertions.", "2387304399"], - [403, 9, 16, "Do not use any type assertions.", "3853987415"], - [404, 15, 16, "Do not use any type assertions.", "3853987415"], - [461, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [462, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/datetime/datemath.ts:3042345155": [ - [107, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [188, 62, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/datetime/durationutil.ts:1346612085": [ - [24, 10, 71, "Do not use any type assertions.", "1943510997"] - ], - "packages/grafana-data/src/datetime/formatter.ts:2810074956": [ - [95, 15, 24, "Do not use any type assertions.", "2563934112"] - ], - "packages/grafana-data/src/datetime/moment_wrapper.ts:3863458304": [ - [5, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [91, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [96, 9, 57, "Do not use any type assertions.", "783816400"], - [96, 20, 20, "Do not use any type assertions.", "4017702375"], - [101, 9, 90, "Do not use any type assertions.", "2859565590"], - [101, 25, 26, "Do not use any type assertions.", "2854720620"], - [101, 53, 25, "Do not use any type assertions.", "3531609503"], - [105, 9, 53, "Do not use any type assertions.", "1585325660"], - [105, 16, 20, "Do not use any type assertions.", "4017702375"], - [109, 9, 25, "Do not use any type assertions.", "320404049"] - ], - "packages/grafana-data/src/datetime/parser.test.ts:1498231055": [ - [12, 16, 9, "Do not use any type assertions.", "3692209159"], - [12, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/datetime/parser.ts:1265177771": [ - [57, 13, 20, "Do not use any type assertions.", "313765767"], - [61, 22, 20, "Do not use any type assertions.", "313765767"], - [69, 11, 47, "Do not use any type assertions.", "896612280"], - [74, 13, 37, "Do not use any type assertions.", "1290909039"], - [76, 13, 33, "Do not use any type assertions.", "1477545443"], - [81, 15, 20, "Do not use any type assertions.", "3477254842"], - [86, 11, 38, "Do not use any type assertions.", "1500131464"], - [91, 13, 28, "Do not use any type assertions.", "2187961375"], - [93, 13, 24, "Do not use any type assertions.", "1019297299"] - ], - "packages/grafana-data/src/datetime/rangeutil.ts:2182917545": [ - [88, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [89, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [102, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [213, 12, 11, "Do not use any type assertions.", "2911041748"], - [325, 9, 51, "Do not use any type assertions.", "518175982"], - [325, 10, 27, "Do not use any type assertions.", "1218747209"], - [325, 34, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/datetime/timezones.ts:2108351677": [ - [125, 19, 20, "Do not use any type assertions.", "519285372"], - [141, 19, 20, "Do not use any type assertions.", "519285372"] - ], - "packages/grafana-data/src/events/EventBus.test.ts:1997102243": [ - [53, 14, 20, "Do not use any type assertions.", "4063928634"], - [53, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [73, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [90, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [91, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/events/EventBus.ts:3333248191": [ - [54, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [114, 7, 12, "Do not use any type assertions.", "881223021"], - [114, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [127, 11, 77, "Do not use any type assertions.", "693950351"] - ], - "packages/grafana-data/src/events/common.ts:1085301537": [ - [19, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/events/types.ts:2244734851": [ - [8, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [118, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [123, 62, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/field/displayProcessor.test.ts:2730437649": [ - [18, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 14, 12, "Do not use any type assertions.", "4064292234"], - [22, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 43, 12, "Do not use any type assertions.", "2325524050"], - [22, 52, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/field/displayProcessor.ts:1120226691": [ - [44, 16, 22, "Do not use any type assertions.", "2486998761"], - [77, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [168, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [173, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [175, 13, 25, "Do not use any type assertions.", "861408597"], - [175, 13, 15, "Do not use any type assertions.", "363922340"], - [181, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/field/fieldColor.test.ts:1182999115": [ - [12, 13, 36, "Do not use any type assertions.", "1306892209"], - [14, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/field/fieldComparers.ts:1176505114": [ - [27, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [76, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [84, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [100, 44, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/field/fieldDisplay.test.ts:2611472492": [ - [16, 21, 131, "Do not use any type assertions.", "4220820607"], - [18, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [323, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [530, 45, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/field/fieldOverrides.test.ts:3966088227": [ - [32, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [52, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [60, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [69, 10, 31, "Do not use any type assertions.", "2350635635"], - [69, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [70, 25, 17, "Do not use any type assertions.", "192014884"], - [70, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 22, 17, "Do not use any type assertions.", "192014884"], - [71, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [182, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [240, 18, 17, "Do not use any type assertions.", "2763552104"], - [259, 19, 24, "Do not use any type assertions.", "88764288"], - [260, 24, 39, "Do not use any type assertions.", "339727724"], - [260, 24, 16, "Do not use any type assertions.", "2939667099"], - [260, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [286, 19, 24, "Do not use any type assertions.", "88764288"], - [287, 24, 39, "Do not use any type assertions.", "339727724"], - [287, 24, 16, "Do not use any type assertions.", "2939667099"], - [287, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [301, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [305, 19, 24, "Do not use any type assertions.", "88764288"], - [306, 24, 145, "Do not use any type assertions.", "2328890863"], - [323, 19, 24, "Do not use any type assertions.", "88764288"], - [324, 24, 39, "Do not use any type assertions.", "339727724"], - [324, 24, 16, "Do not use any type assertions.", "2939667099"], - [324, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [376, 12, 9, "Do not use any type assertions.", "3815122951"], - [376, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [377, 13, 33, "Do not use any type assertions.", "549133714"], - [377, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [411, 12, 9, "Do not use any type assertions.", "3815122951"], - [411, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [412, 13, 33, "Do not use any type assertions.", "549133714"], - [412, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [445, 14, 9, "Do not use any type assertions.", "3815122951"], - [445, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [446, 15, 33, "Do not use any type assertions.", "549133714"], - [446, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [468, 14, 9, "Do not use any type assertions.", "3815122951"], - [468, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [469, 15, 33, "Do not use any type assertions.", "549133714"], - [469, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [489, 14, 9, "Do not use any type assertions.", "3815122951"], - [489, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [490, 15, 33, "Do not use any type assertions.", "549133714"], - [490, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [514, 14, 9, "Do not use any type assertions.", "3815122951"], - [514, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [515, 15, 33, "Do not use any type assertions.", "549133714"], - [515, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [540, 14, 9, "Do not use any type assertions.", "3815122951"], - [540, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [541, 15, 33, "Do not use any type assertions.", "549133714"], - [541, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [554, 14, 9, "Do not use any type assertions.", "3815122951"], - [554, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [555, 15, 33, "Do not use any type assertions.", "549133714"], - [555, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [568, 14, 9, "Do not use any type assertions.", "3692209159"], - [568, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [569, 29, 17, "Do not use any type assertions.", "192014884"], - [569, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [570, 26, 17, "Do not use any type assertions.", "192014884"], - [570, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [603, 14, 24, "Do not use any type assertions.", "94919411"], - [603, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [604, 29, 17, "Do not use any type assertions.", "192014884"], - [604, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [605, 26, 17, "Do not use any type assertions.", "192014884"], - [605, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [662, 17, 25, "Do not use any type assertions.", "861408597"], - [662, 17, 15, "Do not use any type assertions.", "363922340"] - ], - "packages/grafana-data/src/field/fieldOverrides.ts:173688672": [ - [215, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [217, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [294, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [295, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [437, 17, 9, "Do not use any type assertions.", "3692209159"], - [437, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/field/getFieldDisplayValuesProxy.ts:303705866": [ - [21, 19, 34, "Do not use any type assertions.", "2511902902"], - [22, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/field/overrides/processors.ts:976588100": [ - [10, 98, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [60, 9, 19, "Do not use any type assertions.", "4019024842"], - [66, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [70, 9, 23, "Do not use any type assertions.", "1315062429"], - [86, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [88, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [102, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [120, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 9, 25, "Do not use any type assertions.", "4066157234"] - ], - "packages/grafana-data/src/field/scale.test.ts:1680837978": [ - [40, 16, 11, "Do not use any type assertions.", "1111391191"], - [40, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 16, 12, "Do not use any type assertions.", "20051356"], - [45, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/field/scale.ts:4080577289": [ - [51, 15, 33, "Do not use any type assertions.", "374573632"], - [51, 15, 20, "Do not use any type assertions.", "3781735909"], - [57, 15, 33, "Do not use any type assertions.", "374573632"], - [57, 15, 20, "Do not use any type assertions.", "3781735909"] - ], - "packages/grafana-data/src/field/standardFieldConfigEditorRegistry.ts:1293845374": [ - [8, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 79, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 93, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 71, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 80, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/field/templateProxies.ts:1955067516": [ - [9, 97, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 4, 9, "Do not use any type assertions.", "3692209159"], - [11, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 47, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/geo/layer.ts:1315739474": [ - [50, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 43, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/panel/PanelPlugin.test.tsx:2004681592": [ - [12, 15, 200, "Do not use any type assertions.", "290453869"], - [21, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 15, 69, "Do not use any type assertions.", "2502663541"], - [28, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [198, 36, 224, "Do not use any type assertions.", "575539058"], - [204, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/panel/PanelPlugin.ts:618793680": [ - [23, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [94, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [95, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [149, 28, 25, "Do not use any type assertions.", "1084111197"], - [264, 36, 44, "Do not use any type assertions.", "861592870"] - ], - "packages/grafana-data/src/panel/registryFactories.ts:670342175": [ - [46, 63, 41, "Do not use any type assertions.", "3538501294"], - [52, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [52, 56, 41, "Do not use any type assertions.", "3538501294"], - [53, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 57, 41, "Do not use any type assertions.", "3538501294"] - ], - "packages/grafana-data/src/text/sanitize.ts:1114634972": [ - [6, 3, 20, "Do not use any type assertions.", "3262197387"] - ], - "packages/grafana-data/src/text/string.ts:1092210327": [ - [75, 63, 15, "Do not use any type assertions.", "3610795007"] - ], - "packages/grafana-data/src/text/text.ts:2872452826": [ - [20, 54, 14, "Do not use any type assertions.", "1702556236"] - ], - "packages/grafana-data/src/themes/colorManipulator.ts:4158415109": [ - [136, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [168, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [225, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [353, 10, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/themes/createColors.ts:3282131190": [ - [287, 11, 23, "Do not use any type assertions.", "3430934710"] - ], - "packages/grafana-data/src/transformations/fieldReducer.test.ts:1623982597": [ - [12, 43, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/transformations/fieldReducer.ts:746617195": [ - [35, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 18, 16, "Do not use any type assertions.", "3633514916"], - [81, 18, 38, "Do not use any type assertions.", "210801160"], - [252, 16, 468, "Do not use any type assertions.", "3479101533"], - [425, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [448, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/transformations/matchers/predicates.ts:1304871577": [ - [207, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [211, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [221, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [225, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [236, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [240, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [250, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [254, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/transformations/matchers/valueMatchers/types.ts:4132874544": [ - [10, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 46, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/transformations/standardTransformersRegistry.ts:3512548374": [ - [36, 81, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/transformations/transformDataFrame.ts:2008176802": [ - [27, 54, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/transformations/transformers/calculateField.test.ts:555696713": [ - [104, 16, 89, "Do not use any type assertions.", "2021996215"] - ], - "packages/grafana-data/src/transformations/transformers/calculateField.ts:1967492839": [ - [222, 13, 30, "Do not use any type assertions.", "3221618862"], - [222, 13, 20, "Do not use any type assertions.", "3781735909"] - ], - "packages/grafana-data/src/transformations/transformers/ensureColumns.ts:3920292289": [ - [16, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/transformations/transformers/groupBy.ts:1265274078": [ - [119, 54, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/transformations/transformers/groupingToMatrix.ts:849458407": [ - [53, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [95, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/transformations/transformers/histogram.ts:4002786058": [ - [213, 24, 81, "Do not use any type assertions.", "3954645549"], - [314, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [315, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [315, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/transformations/transformers/joinDataFrames.ts:1554585514": [ - [340, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/transformations/transformers/labelsToFields.test.ts:1352052528": [ - [393, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/transformations/transformers/merge.test.ts:2146541230": [ - [587, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [596, 41, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/transformations/transformers/merge.ts:363497639": [ - [68, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [152, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [183, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [183, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [212, 85, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/transformations/transformers/reduce.test.ts:1606468899": [ - [263, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [264, 36, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/transformations/transformers/reduce.ts:272295262": [ - [193, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [194, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [195, 11, 42, "Do not use any type assertions.", "3591993996"], - [195, 11, 27, "Do not use any type assertions.", "2378182462"] - ], - "packages/grafana-data/src/transformations/transformers/seriesToRows.test.ts:1606158068": [ - [247, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [256, 41, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/OptionsUIRegistryBuilder.ts:1000949350": [ - [35, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [65, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [82, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [82, 59, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/ScopedVars.ts:2704866676": [ - [0, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [1, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/annotations.ts:2095438900": [ - [19, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [52, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [96, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/app.ts:2148970488": [ - [75, 48, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/config.ts:459013773": [ - [170, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [183, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/dashboard.ts:1867834569": [ - [12, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 10, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/data.ts:1421835165": [ - [8, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [139, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [145, 8, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/dataFrame.ts:2300070061": [ - [27, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [109, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [211, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [228, 51, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/dataLink.ts:2797648180": [ - [7, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 6, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [55, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [62, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [62, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/datasource.ts:3979031722": [ - [24, 85, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [99, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [109, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [152, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [153, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [172, 72, 3, "Unexpected any. Specify a different type.", "193409811"], - [246, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [260, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [260, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [270, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [270, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [275, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [280, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [317, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [319, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [376, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [402, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [408, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [601, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [611, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [611, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [612, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [612, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [618, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [619, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/displayValue.ts:1720677526": [ - [2, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/explore.ts:2754378041": [ - [4, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 47, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/fieldOverrides.ts:2001381871": [ - [12, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 23, 13, "Do not use any type assertions.", "2549456343"], - [50, 17, 36, "Do not use any type assertions.", "1582143062"], - [53, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 94, 3, "Unexpected any. Specify a different type.", "193409811"], - [108, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/flot.ts:3922197969": [ - [5, 10, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/graph.ts:1084519253": [ - [29, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 79, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 91, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/legacyEvents.ts:3612445070": [ - [28, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 7, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/live.ts:3489447170": [ - [73, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [80, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [90, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [145, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [158, 15, 28, "Do not use any type assertions.", "2042464410"], - [185, 11, 20, "Do not use any type assertions.", "3280029461"] - ], - "packages/grafana-data/src/types/logs.ts:601579487": [ - [166, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [171, 26, 46, "Do not use any type assertions.", "2856259730"] - ], - "packages/grafana-data/src/types/logsVolume.ts:3841323210": [ - [19, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 10, 53, "Do not use any type assertions.", "250619385"] - ], - "packages/grafana-data/src/types/options.ts:1765670702": [ - [7, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 72, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/panel.ts:531169869": [ - [64, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [114, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [130, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [135, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [138, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [146, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [146, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [146, 82, 3, "Unexpected any. Specify a different type.", "193409811"], - [149, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [149, 78, 3, "Unexpected any. Specify a different type.", "193409811"], - [159, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [175, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [192, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [192, 72, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/plugin.ts:695757440": [ - [173, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [190, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [196, 16, 7, "Do not use any type assertions.", "3399135973"] - ], - "packages/grafana-data/src/types/query.ts:4277928644": [ - [100, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [102, 10, 54, "Do not use any type assertions.", "4019507377"], - [109, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [111, 10, 54, "Do not use any type assertions.", "2877975176"] - ], - "packages/grafana-data/src/types/select.ts:598910641": [ - [3, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/trace.ts:1845374998": [ - [3, 34, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/transformations.ts:141199201": [ - [12, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [82, 42, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/variables.ts:1466980040": [ - [64, 36, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/types/vector.ts:2084522183": [ - [0, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/OptionsUIBuilders.ts:3502466904": [ - [27, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 16, 51, "Do not use any type assertions.", "2103665032"], - [34, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 14, 51, "Do not use any type assertions.", "2103665032"], - [35, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 16, 51, "Do not use any type assertions.", "2758916334"], - [46, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [47, 14, 51, "Do not use any type assertions.", "2758916334"], - [47, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 16, 49, "Do not use any type assertions.", "1580240726"], - [58, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 14, 49, "Do not use any type assertions.", "1580240726"], - [59, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 16, 51, "Do not use any type assertions.", "4186387267"], - [72, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [73, 14, 51, "Do not use any type assertions.", "4186387267"], - [73, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 16, 50, "Do not use any type assertions.", "2783329530"], - [85, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [86, 14, 50, "Do not use any type assertions.", "2783329530"], - [86, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [94, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 14, 52, "Do not use any type assertions.", "849565103"], - [98, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [99, 16, 52, "Do not use any type assertions.", "849565103"], - [99, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [106, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [110, 14, 50, "Do not use any type assertions.", "1489113334"], - [110, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [111, 16, 50, "Do not use any type assertions.", "1489113334"], - [111, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [118, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 14, 49, "Do not use any type assertions.", "1575774157"], - [124, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [125, 16, 49, "Do not use any type assertions.", "1575774157"], - [125, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [134, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [135, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [136, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [136, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [136, 82, 3, "Unexpected any. Specify a different type.", "193409811"], - [136, 87, 3, "Unexpected any. Specify a different type.", "193409811"], - [138, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [146, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [146, 86, 3, "Unexpected any. Specify a different type.", "193409811"], - [146, 91, 3, "Unexpected any. Specify a different type.", "193409811"], - [146, 96, 3, "Unexpected any. Specify a different type.", "193409811"], - [172, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [177, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [198, 14, 51, "Do not use any type assertions.", "2103665032"], - [198, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [206, 14, 51, "Do not use any type assertions.", "2758916334"], - [206, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [214, 14, 49, "Do not use any type assertions.", "1580240726"], - [214, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [224, 14, 52, "Do not use any type assertions.", "2217285421"], - [224, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [234, 14, 51, "Do not use any type assertions.", "4186387267"], - [234, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [244, 14, 57, "Do not use any type assertions.", "3280070599"], - [244, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [254, 14, 50, "Do not use any type assertions.", "2783329530"], - [254, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [258, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [262, 14, 52, "Do not use any type assertions.", "849565103"], - [262, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [266, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [270, 14, 50, "Do not use any type assertions.", "1489113334"], - [270, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [275, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [279, 14, 53, "Do not use any type assertions.", "3431789536"], - [279, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [284, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [290, 14, 49, "Do not use any type assertions.", "1575774157"], - [290, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [294, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [300, 14, 55, "Do not use any type assertions.", "3607313283"], - [300, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [304, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [310, 14, 58, "Do not use any type assertions.", "2103036218"], - [310, 69, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/Registry.ts:1175303969": [ - [21, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [87, 19, 67, "Do not use any type assertions.", "394802609"], - [134, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/anyToNumber.ts:2114070998": [ - [7, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/arrayUtils.ts:336143047": [ - [17, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 31, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/csv.ts:553679054": [ - [36, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [75, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [117, 31, 23, "Do not use any type assertions.", "4225561528"], - [117, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [179, 20, 170, "Do not use any type assertions.", "3811623300"], - [193, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [195, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [209, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [215, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [231, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [237, 15, 23, "Do not use any type assertions.", "1721644955"], - [237, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/dataLinks.test.ts:486759551": [ - [21, 13, 9, "Do not use any type assertions.", "3692209159"], - [21, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 13, 9, "Do not use any type assertions.", "3692209159"], - [64, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/dataLinks.ts:2156534609": [ - [72, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [107, 22, 7, "Do not use any type assertions.", "3399135973"] - ], - "packages/grafana-data/src/utils/datasource.ts:3865623235": [ - [89, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [102, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [118, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [125, 59, 7, "Do not use any type assertions.", "3399135970"], - [139, 59, 7, "Do not use any type assertions.", "3399135970"] - ], - "packages/grafana-data/src/utils/fieldParser.ts:3183969710": [ - [3, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 78, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/flotPairs.test.ts:396046928": [ - [53, 43, 15, "Do not use any type assertions.", "2931285723"] - ], - "packages/grafana-data/src/utils/flotPairs.ts:1388341687": [ - [24, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/labels.test.ts:713895701": [ - [76, 26, 30, "Do not use any type assertions.", "90966178"], - [76, 26, 20, "Do not use any type assertions.", "3781735909"] - ], - "packages/grafana-data/src/utils/labels.ts:2624033894": [ - [47, 5, 30, "Do not use any type assertions.", "90966178"], - [47, 5, 20, "Do not use any type assertions.", "3781735909"] - ], - "packages/grafana-data/src/utils/location.test.ts:3134870358": [ - [31, 18, 31, "Do not use any type assertions.", "2350635635"], - [31, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 33, 17, "Do not use any type assertions.", "192014884"], - [32, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 30, 17, "Do not use any type assertions.", "192014884"], - [33, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 18, 9, "Do not use any type assertions.", "3692209159"], - [67, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 33, 17, "Do not use any type assertions.", "192014884"], - [68, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [69, 30, 17, "Do not use any type assertions.", "192014884"], - [69, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [120, 16, 9, "Do not use any type assertions.", "3692209159"], - [120, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [121, 31, 17, "Do not use any type assertions.", "192014884"], - [121, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [122, 28, 17, "Do not use any type assertions.", "192014884"], - [122, 42, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/location.ts:660519101": [ - [7, 35, 24, "Do not use any type assertions.", "94919411"], - [7, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 88, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/logs.test.ts:1216538497": [ - [72, 35, 11, "Do not use any type assertions.", "2181133752"], - [72, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [97, 35, 11, "Do not use any type assertions.", "2181133752"], - [97, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [219, 31, 11, "Do not use any type assertions.", "2181133752"], - [219, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [238, 31, 11, "Do not use any type assertions.", "2181133752"], - [238, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [361, 14, 100, "Do not use any type assertions.", "2102179444"], - [361, 14, 85, "Do not use any type assertions.", "2610924903"], - [366, 7, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/logs.ts:2787798673": [ - [31, 17, 15, "Do not use any type assertions.", "363846227"], - [31, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 17, 15, "Do not use any type assertions.", "363846227"], - [40, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [132, 57, 18, "Do not use any type assertions.", "3064262716"], - [136, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/makeClassES5Compatible.ts:3257121737": [ - [5, 9, 339, "Do not use any type assertions.", "3055526154"], - [5, 9, 334, "Do not use any type assertions.", "249387180"], - [5, 19, 15, "Do not use any type assertions.", "1687047567"], - [5, 31, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/object.ts:2937429507": [ - [0, 40, 3, "Unexpected any. Specify a different type.", "193343146"], - [1, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/testdata/testTheme.ts:2538797186": [ - [3, 9, 177, "Do not use any type assertions.", "2352721860"], - [3, 9, 161, "Do not use any type assertions.", "3399692123"] - ], - "packages/grafana-data/src/utils/tests/mockTransformationsRegistry.ts:1363711227": [ - [3, 84, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/url.ts:1365136721": [ - [37, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [55, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [119, 27, 20, "Do not use any type assertions.", "1996226442"], - [119, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [138, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [158, 56, 13, "Do not use any type assertions.", "2613517305"], - [160, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/valueMappings.test.ts:3782848528": [ - [137, 43, 12, "Do not use any type assertions.", "4064292234"], - [137, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [142, 43, 12, "Do not use any type assertions.", "4064292234"], - [142, 52, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/utils/valueMappings.ts:2679663874": [ - [12, 76, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 41, 15, "Do not use any type assertions.", "3446303945"], - [70, 17, 33, "Do not use any type assertions.", "3501981256"], - [78, 22, 12, "Do not use any type assertions.", "4064292234"], - [78, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [84, 22, 12, "Do not use any type assertions.", "4064292234"], - [84, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [115, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [116, 95, 13, "Do not use any type assertions.", "1087725378"], - [132, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [177, 44, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/valueFormats/arithmeticFormatters.ts:463707487": [ - [44, 37, 18, "Do not use any type assertions.", "1928854124"] - ], - "packages/grafana-data/src/valueFormats/dateTimeFormatters.ts:575283615": [ - [230, 20, 18, "Do not use any type assertions.", "1928854124"] - ], - "packages/grafana-data/src/valueFormats/valueFormats.ts:3706209663": [ - [128, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [160, 67, 18, "Do not use any type assertions.", "1928854124"] - ], - "packages/grafana-data/src/vector/AppendedVectors.ts:3335237172": [ - [15, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 11, 25, "Do not use any type assertions.", "1350629667"], - [63, 11, 20, "Do not use any type assertions.", "3781735909"] - ], - "packages/grafana-data/src/vector/ArrayVector.ts:1162105047": [ - [7, 29, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/vector/CircularVector.ts:3601541165": [ - [20, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/vector/ConstantVector.ts:3493898427": [ - [5, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/vector/FormattedVector.ts:3355680030": [ - [9, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/vector/FunctionalVector.ts:182303478": [ - [5, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-data/src/vector/SortedVector.ts:897815876": [ - [7, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-e2e/cypress/plugins/benchmark/formatting.ts:3177773373": [ - [43, 16, 49, "Do not use any type assertions.", "754457647"], - [93, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [113, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [119, 22, 34, "Do not use any type assertions.", "2358991312"], - [120, 22, 34, "Do not use any type assertions.", "1898018012"], - [123, 28, 39, "Do not use any type assertions.", "238948970"], - [124, 31, 32, "Do not use any type assertions.", "1291149133"] - ], - "packages/grafana-e2e/cypress/support/commands.ts:467822646": [ - [15, 66, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-e2e/cypress/support/index.d.ts:1665274808": [ - [5, 45, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-e2e/src/flows/addDashboard.ts:2637843494": [ - [86, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [88, 48, 39, "Do not use any type assertions.", "1884280018"] - ], - "packages/grafana-e2e/src/flows/addDataSource.ts:4045640564": [ - [89, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [91, 50, 34, "Do not use any type assertions.", "692105544"] - ], - "packages/grafana-e2e/src/flows/addPanel.ts:2896058806": [ - [7, 54, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-e2e/src/flows/configurePanel.ts:3990607374": [ - [56, 56, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-e2e/src/flows/deleteDashboard.ts:2981357721": [ - [20, 54, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-e2e/src/flows/deleteDataSource.ts:2382525810": [ - [20, 55, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-e2e/src/flows/openDashboard.ts:1062386780": [ - [19, 56, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-e2e/src/flows/revertAllChanges.ts:1415555863": [ - [3, 72, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 42, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-e2e/src/flows/selectOption.ts:318078099": [ - [4, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 58, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-e2e/src/index.ts:3317638532": [ - [17, 29, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-e2e/src/support/localStorage.ts:2870202114": [ - [3, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 37, 15, "Do not use any type assertions.", "3446303945"] - ], - "packages/grafana-e2e/src/support/scenarioContext.ts:132989901": [ - [11, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 74, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-e2e/src/support/types.ts:207928222": [ - [21, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [84, 33, 30, "Do not use any type assertions.", "2243881570"], - [84, 33, 20, "Do not use any type assertions.", "3781735909"], - [101, 33, 30, "Do not use any type assertions.", "2243881570"], - [101, 33, 20, "Do not use any type assertions.", "3781735909"], - [133, 38, 21, "Do not use any type assertions.", "150266787"] - ], - "packages/grafana-runtime/src/components/PanelRenderer.tsx:231002851": [ - [12, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 79, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 73, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-runtime/src/config.ts:3120727460": [ - [65, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [74, 29, 17, "Do not use any type assertions.", "4278379396"], - [97, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [176, 18, 13, "Do not use any type assertions.", "538937261"], - [176, 28, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-runtime/src/services/AngularLoader.ts:3455177907": [ - [45, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-runtime/src/services/EchoSrv.ts:2163840677": [ - [51, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 62, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-runtime/src/services/LocationService.ts:3793815118": [ - [14, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [57, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [88, 23, 34, "Do not use any type assertions.", "916459105"], - [88, 54, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-runtime/src/services/backendSrv.ts:4070114165": [ - [23, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [88, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [108, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [116, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [141, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [141, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [142, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [142, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [143, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [143, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [144, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [144, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [145, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [145, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [161, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-runtime/src/services/live.ts:3749886101": [ - [56, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [99, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [99, 59, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-runtime/src/types/analytics.ts:500752368": [ - [98, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-runtime/src/utils/DataSourceWithBackend.test.ts:3158941323": [ - [23, 19, 123, "Do not use any type assertions.", "3028355264"], - [23, 19, 109, "Do not use any type assertions.", "4248357345"], - [30, 6, 40, "Do not use any type assertions.", "1410513540"], - [30, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 21, 152, "Do not use any type assertions.", "1888028095"], - [53, 13, 157, "Do not use any type assertions.", "3732443872"], - [97, 38, 50, "Do not use any type assertions.", "1572766044"] - ], - "packages/grafana-runtime/src/utils/DataSourceWithBackend.ts:321932775": [ - [46, 13, 10, "Do not use any type assertions.", "3474434608"], - [46, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [80, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [155, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [179, 47, 22, "Do not use any type assertions.", "1838499175"], - [196, 30, 52, "Do not use any type assertions.", "1783745780"], - [208, 80, 3, "Unexpected any. Specify a different type.", "193409811"], - [220, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [220, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [227, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [227, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [238, 15, 22, "Do not use any type assertions.", "2814119858"], - [241, 15, 29, "Do not use any type assertions.", "1194183871"], - [249, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [281, 20, 14, "Do not use any type assertions.", "2578702492"] - ], - "packages/grafana-runtime/src/utils/analytics.ts:2587372676": [ - [44, 87, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-runtime/src/utils/plugin.ts:2044619279": [ - [30, 66, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-runtime/src/utils/queryResponse.test.ts:1749674203": [ - [6, 13, 1293, "Do not use any type assertions.", "389191137"], - [6, 13, 1249, "Do not use any type assertions.", "1136296132"], - [49, 5, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 21, 553, "Do not use any type assertions.", "60037888"], - [51, 21, 509, "Do not use any type assertions.", "3428153637"], - [77, 5, 3, "Unexpected any. Specify a different type.", "193409811"], - [263, 20, 78, "Do not use any type assertions.", "260105602"], - [263, 95, 3, "Unexpected any. Specify a different type.", "193409811"], - [266, 20, 78, "Do not use any type assertions.", "260105602"], - [266, 95, 3, "Unexpected any. Specify a different type.", "193409811"], - [269, 20, 78, "Do not use any type assertions.", "260105602"], - [269, 95, 3, "Unexpected any. Specify a different type.", "193409811"], - [277, 17, 54, "Do not use any type assertions.", "3839537173"], - [282, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [392, 37, 75, "Do not use any type assertions.", "3988229314"], - [400, 37, 167, "Do not use any type assertions.", "1877755876"], - [417, 24, 50, "Do not use any type assertions.", "2082117485"], - [421, 24, 39, "Do not use any type assertions.", "3297491277"], - [425, 24, 29, "Do not use any type assertions.", "3030235373"] - ], - "packages/grafana-runtime/src/utils/queryResponse.ts:622624040": [ - [66, 7, 20, "Do not use any type assertions.", "565667692"], - [67, 21, 20, "Do not use any type assertions.", "565667692"], - [69, 44, 20, "Do not use any type assertions.", "565667692"], - [127, 7, 20, "Do not use any type assertions.", "565667692"], - [127, 40, 20, "Do not use any type assertions.", "565667692"], - [132, 35, 21, "Do not use any type assertions.", "2836044145"], - [173, 50, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-runtime/src/utils/toDataQueryError.ts:1023399838": [ - [9, 16, 29, "Do not use any type assertions.", "2652653335"], - [13, 13, 34, "Do not use any type assertions.", "2839813991"] - ], - "packages/grafana-toolkit/src/cli/tasks/changelog.ts:1043103554": [ - [12, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [94, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [96, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [97, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [109, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [112, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [112, 71, 3, "Unexpected any. Specify a different type.", "193409811"], - [134, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [135, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/cli/tasks/cherrypick.ts:2785877228": [ - [32, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/cli/tasks/component.create.ts:2509129370": [ - [23, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 40, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/cli/tasks/package.build.ts:1526629606": [ - [18, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [54, 57, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/cli/tasks/plugin.ci.ts:1781214729": [ - [212, 22, 70, "Do not use any type assertions.", "4091934253"] - ], - "packages/grafana-toolkit/src/cli/tasks/plugin.utils.ts:3083853673": [ - [12, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [123, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/cli/tasks/plugin/bundle.managed.ts:2619999273": [ - [21, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/cli/tasks/plugin/create.ts:3828310937": [ - [90, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [122, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [123, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/cli/tasks/searchTestDataSetup.ts:838430164": [ - [16, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [70, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [90, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/cli/tasks/task.ts:3806515523": [ - [0, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 22, 9, "Do not use any type assertions.", "3692209159"], - [3, 28, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/cli/tasks/toolkit.build.ts:2695690981": [ - [37, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/cli/utils/githubRelease.ts:3386958157": [ - [75, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [104, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/cli/utils/prompt.ts:3439653828": [ - [12, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 75, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [66, 7, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/cli/utils/useSpinner.ts:844041420": [ - [2, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/config/jest.plugin.config.ts:2281387127": [ - [27, 30, 89, "Do not use any type assertions.", "457813286"] - ], - "packages/grafana-toolkit/src/config/react-inlinesvg.tsx:2460029332": [ - [6, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/config/utils/pluginValidation.ts:548747601": [ - [2, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 9, 24, "Do not use any type assertions.", "481445010"] - ], - "packages/grafana-toolkit/src/config/webpack.plugin.config.test.ts:292930282": [ - [24, 49, 50, "Do not use any type assertions.", "3214721245"], - [26, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/config/webpack.plugin.config.ts:469943592": [ - [138, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [281, 12, 48, "Do not use any type assertions.", "1955785783"], - [282, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/plugins/manifest.ts:548616162": [ - [8, 75, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 80, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 31, 18, "Do not use any type assertions.", "4001774230"], - [9, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 30, 18, "Do not use any type assertions.", "4001774230"], - [16, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 27, 18, "Do not use any type assertions.", "4001774230"], - [26, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 19, 101, "Do not use any type assertions.", "4075533361"], - [78, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/plugins/types.ts:3491103080": [ - [50, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-toolkit/src/plugins/utils.ts:885998206": [ - [104, 17, 36, "Do not use any type assertions.", "3249307774"] - ], - "packages/grafana-toolkit/src/plugins/workflow.ts:151576019": [ - [26, 22, 21, "Do not use any type assertions.", "1502601602"], - [90, 23, 35, "Do not use any type assertions.", "1445936757"] - ], - "packages/grafana-ui/src/components/Alert/Alert.tsx:2945940278": [ - [67, 32, 41, "Do not use any type assertions.", "1981767121"] - ], - "packages/grafana-ui/src/components/BarGauge/BarGauge.story.tsx:649456732": [ - [12, 15, 1107, "Do not use any type assertions.", "3124213499"] - ], - "packages/grafana-ui/src/components/BarGauge/BarGauge.test.tsx:4199795290": [ - [67, 19, 30, "Do not use any type assertions.", "1449839394"], - [91, 29, 31, "Do not use any type assertions.", "3908794503"], - [91, 29, 15, "Do not use any type assertions.", "363922340"] - ], - "packages/grafana-ui/src/components/BigValue/BigValue.story.tsx:583165497": [ - [18, 15, 1085, "Do not use any type assertions.", "2350956962"] - ], - "packages/grafana-ui/src/components/Button/Button.story.tsx:1595485627": [ - [11, 15, 116, "Do not use any type assertions.", "849131644"] - ], - "packages/grafana-ui/src/components/Button/ToolbarButton.tsx:12347407": [ - [69, 7, 13, "Do not use any type assertions.", "3497904325"], - [69, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [118, 23, 16, "Do not use any type assertions.", "1396449744"] - ], - "packages/grafana-ui/src/components/ButtonCascader/ButtonCascader.story.tsx:2668731452": [ - [9, 15, 680, "Do not use any type assertions.", "3498768975"] - ], - "packages/grafana-ui/src/components/ButtonCascader/ButtonCascader.tsx:1538789902": [ - [53, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/CallToActionCard/CallToActionCard.story.internal.tsx:1119435756": [ - [8, 15, 280, "Do not use any type assertions.", "2491100412"] - ], - "packages/grafana-ui/src/components/Card/Card.tsx:1645237238": [ - [53, 43, 13, "Do not use any type assertions.", "1014452212"], - [53, 53, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Cascader/Cascader.story.tsx:1208428555": [ - [36, 15, 517, "Do not use any type assertions.", "3207763786"] - ], - "packages/grafana-ui/src/components/Cascader/Cascader.tsx:2727767858": [ - [51, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Cascader/optionMappings.ts:3559380302": [ - [31, 11, 33, "Do not use any type assertions.", "3878291379"], - [31, 11, 23, "Do not use any type assertions.", "3302074164"] - ], - "packages/grafana-ui/src/components/ClickOutsideWrapper/ClickOutsideWrapper.tsx:4260667471": [ - [49, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/ClipboardButton/ClipboardButton.story.internal.tsx:643320595": [ - [9, 15, 304, "Do not use any type assertions.", "1069460807"] - ], - "packages/grafana-ui/src/components/ColorPicker/ColorPicker.story.tsx:1324010667": [ - [13, 15, 336, "Do not use any type assertions.", "461171072"], - [38, 28, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/ColorPicker/ColorPicker.tsx:1976556532": [ - [23, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 92, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 19, 38, "Do not use any type assertions.", "2775487418"] - ], - "packages/grafana-ui/src/components/ColorPicker/ColorPickerPopover.story.tsx:2447589844": [ - [16, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/ColorPicker/ColorPickerPopover.tsx:3402880420": [ - [52, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/ColorPicker/NamedColorsPalette.story.tsx:3944449467": [ - [8, 15, 388, "Do not use any type assertions.", "571368272"] - ], - "packages/grafana-ui/src/components/ConfirmButton/ConfirmButton.story.tsx:3899620475": [ - [13, 15, 687, "Do not use any type assertions.", "1362164447"] - ], - "packages/grafana-ui/src/components/ConfirmModal/ConfirmModal.story.tsx:3936037001": [ - [13, 15, 442, "Do not use any type assertions.", "2688944043"] - ], - "packages/grafana-ui/src/components/CustomScrollbar/CustomScrollbar.tsx:2788028815": [ - [70, 24, 18, "Do not use any type assertions.", "1007946359"], - [70, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 87, 3, "Unexpected any. Specify a different type.", "193409811"], - [86, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [99, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [103, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [107, 47, 3, "Unexpected any. Specify a different type.", "193409811"] + "e2e/benchmarks/live/4-20hz-panels.spec.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "e2e/dashboards-suite/dashboard-templating.spec.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "e2e/dashboards-suite/textbox-variables.spec.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "e2e/panels-suite/panelEdit_queries.spec.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/dataframe/ArrayDataFrame.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "packages/grafana-data/src/dataframe/CircularDataFrame.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/dataframe/DataFrameJSON.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "packages/grafana-data/src/dataframe/DataFrameView.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/dataframe/DataFrameView.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "packages/grafana-data/src/dataframe/MutableDataFrame.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/dataframe/MutableDataFrame.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Do not use any type assertions.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Do not use any type assertions.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Do not use any type assertions.", "21"] + ], + "packages/grafana-data/src/dataframe/dimensions.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/dataframe/frameComparisons.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-data/src/dataframe/frameComparisons.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "packages/grafana-data/src/dataframe/processDataFrame.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/dataframe/processDataFrame.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Do not use any type assertions.", "19"], + [0, 0, 0, "Do not use any type assertions.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Do not use any type assertions.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Do not use any type assertions.", "24"], + [0, 0, 0, "Do not use any type assertions.", "25"], + [0, 0, 0, "Do not use any type assertions.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"] + ], + "packages/grafana-data/src/datetime/datemath.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/datetime/durationutil.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-data/src/datetime/formatter.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-data/src/datetime/moment_wrapper.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"] + ], + "packages/grafana-data/src/datetime/parser.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/datetime/parser.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"] + ], + "packages/grafana-data/src/datetime/rangeutil.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "packages/grafana-data/src/datetime/timezones.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-data/src/events/EventBus.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-data/src/events/EventBus.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"] + ], + "packages/grafana-data/src/events/common.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/events/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "packages/grafana-data/src/field/displayProcessor.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-data/src/field/displayProcessor.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "packages/grafana-data/src/field/fieldColor.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/field/fieldComparers.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "packages/grafana-data/src/field/fieldDisplay.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-data/src/field/fieldOverrides.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"], + [0, 0, 0, "Unexpected any. Specify a different type.", "31"], + [0, 0, 0, "Unexpected any. Specify a different type.", "32"], + [0, 0, 0, "Unexpected any. Specify a different type.", "33"], + [0, 0, 0, "Unexpected any. Specify a different type.", "34"], + [0, 0, 0, "Unexpected any. Specify a different type.", "35"], + [0, 0, 0, "Unexpected any. Specify a different type.", "36"] + ], + "packages/grafana-data/src/field/fieldOverrides.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "packages/grafana-data/src/field/getFieldDisplayValuesProxy.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/field/overrides/processors.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"] + ], + "packages/grafana-data/src/field/scale.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/field/scale.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "packages/grafana-data/src/field/standardFieldConfigEditorRegistry.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "packages/grafana-data/src/field/templateProxies.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-data/src/geo/layer.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/panel/PanelPlugin.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-data/src/panel/PanelPlugin.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"] + ], + "packages/grafana-data/src/panel/registryFactories.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"] + ], + "packages/grafana-data/src/text/sanitize.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-data/src/text/string.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-data/src/text/text.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-data/src/themes/colorManipulator.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-data/src/themes/createColors.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-data/src/transformations/fieldReducer.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/transformations/fieldReducer.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "packages/grafana-data/src/transformations/matchers/predicates.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "packages/grafana-data/src/transformations/matchers/valueMatchers/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/transformations/standardTransformersRegistry.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/transformations/transformDataFrame.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/transformations/transformers/calculateField.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-data/src/transformations/transformers/ensureColumns.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/transformations/transformers/groupBy.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/transformations/transformers/groupingToMatrix.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/transformations/transformers/histogram.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-data/src/transformations/transformers/joinDataFrames.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/transformations/transformers/labelsToFields.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/transformations/transformers/merge.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/transformations/transformers/merge.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "packages/grafana-data/src/transformations/transformers/reduce.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/transformations/transformers/reduce.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "packages/grafana-data/src/transformations/transformers/seriesToRows.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/types/OptionsUIRegistryBuilder.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "packages/grafana-data/src/types/ScopedVars.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-data/src/types/annotations.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "packages/grafana-data/src/types/app.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/types/config.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/types/dashboard.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-data/src/types/data.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-data/src/types/dataFrame.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-data/src/types/dataLink.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "packages/grafana-data/src/types/datasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"] + ], + "packages/grafana-data/src/types/displayValue.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/types/explore.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/types/fieldOverrides.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"] + ], + "packages/grafana-data/src/types/flot.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/types/graph.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-data/src/types/legacyEvents.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/types/live.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"] + ], + "packages/grafana-data/src/types/logs.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-data/src/types/logsVolume.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-data/src/types/options.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/types/panel.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"] + ], + "packages/grafana-data/src/types/plugin.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "packages/grafana-data/src/types/query.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "packages/grafana-data/src/types/select.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-data/src/types/trace.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/types/transformations.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "packages/grafana-data/src/types/variables.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/types/vector.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-data/src/utils/OptionsUIBuilders.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Do not use any type assertions.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Do not use any type assertions.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Do not use any type assertions.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Do not use any type assertions.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Do not use any type assertions.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Do not use any type assertions.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Do not use any type assertions.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Do not use any type assertions.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"], + [0, 0, 0, "Do not use any type assertions.", "31"], + [0, 0, 0, "Unexpected any. Specify a different type.", "32"], + [0, 0, 0, "Unexpected any. Specify a different type.", "33"], + [0, 0, 0, "Do not use any type assertions.", "34"], + [0, 0, 0, "Unexpected any. Specify a different type.", "35"], + [0, 0, 0, "Do not use any type assertions.", "36"], + [0, 0, 0, "Unexpected any. Specify a different type.", "37"], + [0, 0, 0, "Unexpected any. Specify a different type.", "38"], + [0, 0, 0, "Unexpected any. Specify a different type.", "39"], + [0, 0, 0, "Unexpected any. Specify a different type.", "40"], + [0, 0, 0, "Unexpected any. Specify a different type.", "41"], + [0, 0, 0, "Unexpected any. Specify a different type.", "42"], + [0, 0, 0, "Unexpected any. Specify a different type.", "43"], + [0, 0, 0, "Unexpected any. Specify a different type.", "44"], + [0, 0, 0, "Unexpected any. Specify a different type.", "45"], + [0, 0, 0, "Unexpected any. Specify a different type.", "46"], + [0, 0, 0, "Unexpected any. Specify a different type.", "47"], + [0, 0, 0, "Unexpected any. Specify a different type.", "48"], + [0, 0, 0, "Unexpected any. Specify a different type.", "49"], + [0, 0, 0, "Unexpected any. Specify a different type.", "50"], + [0, 0, 0, "Do not use any type assertions.", "51"], + [0, 0, 0, "Unexpected any. Specify a different type.", "52"], + [0, 0, 0, "Do not use any type assertions.", "53"], + [0, 0, 0, "Unexpected any. Specify a different type.", "54"], + [0, 0, 0, "Do not use any type assertions.", "55"], + [0, 0, 0, "Unexpected any. Specify a different type.", "56"], + [0, 0, 0, "Do not use any type assertions.", "57"], + [0, 0, 0, "Unexpected any. Specify a different type.", "58"], + [0, 0, 0, "Do not use any type assertions.", "59"], + [0, 0, 0, "Unexpected any. Specify a different type.", "60"], + [0, 0, 0, "Do not use any type assertions.", "61"], + [0, 0, 0, "Unexpected any. Specify a different type.", "62"], + [0, 0, 0, "Do not use any type assertions.", "63"], + [0, 0, 0, "Unexpected any. Specify a different type.", "64"], + [0, 0, 0, "Unexpected any. Specify a different type.", "65"], + [0, 0, 0, "Do not use any type assertions.", "66"], + [0, 0, 0, "Unexpected any. Specify a different type.", "67"], + [0, 0, 0, "Unexpected any. Specify a different type.", "68"], + [0, 0, 0, "Do not use any type assertions.", "69"], + [0, 0, 0, "Unexpected any. Specify a different type.", "70"], + [0, 0, 0, "Unexpected any. Specify a different type.", "71"], + [0, 0, 0, "Do not use any type assertions.", "72"], + [0, 0, 0, "Unexpected any. Specify a different type.", "73"], + [0, 0, 0, "Unexpected any. Specify a different type.", "74"], + [0, 0, 0, "Do not use any type assertions.", "75"], + [0, 0, 0, "Unexpected any. Specify a different type.", "76"], + [0, 0, 0, "Unexpected any. Specify a different type.", "77"], + [0, 0, 0, "Do not use any type assertions.", "78"], + [0, 0, 0, "Unexpected any. Specify a different type.", "79"], + [0, 0, 0, "Unexpected any. Specify a different type.", "80"], + [0, 0, 0, "Do not use any type assertions.", "81"], + [0, 0, 0, "Unexpected any. Specify a different type.", "82"] + ], + "packages/grafana-data/src/utils/Registry.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-data/src/utils/anyToNumber.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/utils/arrayUtils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-data/src/utils/csv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"] + ], + "packages/grafana-data/src/utils/dataLinks.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/utils/dataLinks.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-data/src/utils/datasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"] + ], + "packages/grafana-data/src/utils/fieldParser.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/utils/flotPairs.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/utils/labels.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-data/src/utils/location.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "packages/grafana-data/src/utils/location.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-data/src/utils/logs.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "packages/grafana-data/src/utils/logs.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "packages/grafana-data/src/utils/makeClassES5Compatible.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-data/src/utils/object.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/utils/testdata/testTheme.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-data/src/utils/tests/mockTransformationsRegistry.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/utils/url.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"] + ], + "packages/grafana-data/src/utils/valueMappings.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/utils/valueMappings.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"] + ], + "packages/grafana-data/src/valueFormats/arithmeticFormatters.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-data/src/valueFormats/dateTimeFormatters.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-data/src/valueFormats/valueFormats.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-data/src/vector/AppendedVectors.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "packages/grafana-data/src/vector/ArrayVector.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/vector/CircularVector.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/vector/ConstantVector.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/vector/FormattedVector.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-data/src/vector/FunctionalVector.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-data/src/vector/SortedVector.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-e2e/cypress/plugins/benchmark/formatting.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"] + ], + "packages/grafana-e2e/cypress/support/commands.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-e2e/cypress/support/index.d.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-e2e/src/flows/addDashboard.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-e2e/src/flows/addDataSource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-e2e/src/flows/addPanel.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-e2e/src/flows/configurePanel.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-e2e/src/flows/deleteDashboard.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-e2e/src/flows/deleteDataSource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-e2e/src/flows/openDashboard.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-e2e/src/flows/revertAllChanges.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-e2e/src/flows/selectOption.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-e2e/src/index.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-e2e/src/support/localStorage.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"] + ], + "packages/grafana-e2e/src/support/scenarioContext.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-e2e/src/support/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"] + ], + "packages/grafana-runtime/src/components/PanelRenderer.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-runtime/src/config.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "packages/grafana-runtime/src/services/AngularLoader.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-runtime/src/services/EchoSrv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-runtime/src/services/LocationService.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "packages/grafana-runtime/src/services/backendSrv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"] + ], + "packages/grafana-runtime/src/services/live.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-runtime/src/types/analytics.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-runtime/src/utils/DataSourceWithBackend.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-runtime/src/utils/DataSourceWithBackend.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"], + [0, 0, 0, "Do not use any type assertions.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Do not use any type assertions.", "14"] + ], + "packages/grafana-runtime/src/utils/analytics.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-runtime/src/utils/plugin.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-runtime/src/utils/queryResponse.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "packages/grafana-runtime/src/utils/queryResponse.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "packages/grafana-runtime/src/utils/toDataQueryError.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-toolkit/src/cli/tasks/changelog.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"] + ], + "packages/grafana-toolkit/src/cli/tasks/cherrypick.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-toolkit/src/cli/tasks/component.create.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-toolkit/src/cli/tasks/package.build.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-toolkit/src/cli/tasks/plugin.ci.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-toolkit/src/cli/tasks/plugin.utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-toolkit/src/cli/tasks/plugin/bundle.managed.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-toolkit/src/cli/tasks/plugin/create.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-toolkit/src/cli/tasks/searchTestDataSetup.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"] + ], + "packages/grafana-toolkit/src/cli/tasks/task.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-toolkit/src/cli/tasks/toolkit.build.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-toolkit/src/cli/utils/githubRelease.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-toolkit/src/cli/utils/prompt.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "packages/grafana-toolkit/src/cli/utils/useSpinner.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-toolkit/src/config/jest.plugin.config.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-toolkit/src/config/react-inlinesvg.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-toolkit/src/config/utils/pluginValidation.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-toolkit/src/config/webpack.plugin.config.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-toolkit/src/config/webpack.plugin.config.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-toolkit/src/plugins/manifest.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"] + ], + "packages/grafana-toolkit/src/plugins/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-toolkit/src/plugins/utils.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-toolkit/src/plugins/workflow.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-ui/src/components/Alert/Alert.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/BarGauge/BarGauge.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/BigValue/BigValue.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Button/Button.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Button/ToolbarButton.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "packages/grafana-ui/src/components/ButtonCascader/ButtonCascader.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/ButtonCascader/ButtonCascader.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/CallToActionCard/CallToActionCard.story.internal.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Card/Card.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/Cascader/Cascader.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Cascader/Cascader.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Cascader/optionMappings.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-ui/src/components/ClickOutsideWrapper/ClickOutsideWrapper.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/ClipboardButton/ClipboardButton.story.internal.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/ColorPicker/ColorPicker.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/ColorPicker/ColorPicker.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] ], - "packages/grafana-ui/src/components/DataLinks/DataLinkInput.tsx:1738121447": [ - [40, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 10, 30, "Do not use any type assertions.", "3079788355"], - [76, 22, 37, "Do not use any type assertions.", "3286152640"], - [97, 75, 3, "Unexpected any. Specify a different type.", "193409811"], - [210, 61, 22, "Do not use any type assertions.", "3167227514"] + "packages/grafana-ui/src/components/ColorPicker/ColorPickerPopover.story.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] ], - "packages/grafana-ui/src/components/DataLinks/DataLinksInlineEditor/DataLinksListItem.test.tsx:429617055": [ - [58, 15, 30, "Do not use any type assertions.", "2243881570"], - [58, 15, 20, "Do not use any type assertions.", "3781735909"], - [70, 13, 30, "Do not use any type assertions.", "2243881570"], - [70, 13, 20, "Do not use any type assertions.", "3781735909"] + "packages/grafana-ui/src/components/ColorPicker/ColorPickerPopover.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] ], - "packages/grafana-ui/src/components/DataLinks/SelectionReference.ts:2462880596": [ - [12, 11, 113, "Do not use any type assertions.", "1722998683"] + "packages/grafana-ui/src/components/ColorPicker/NamedColorsPalette.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] ], - "packages/grafana-ui/src/components/DataSourceSettings/CustomHeadersSettings.tsx:1261089658": [ - [22, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 44, 3, "Unexpected any. Specify a different type.", "193409811"] + "packages/grafana-ui/src/components/ConfirmButton/ConfirmButton.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] ], - "packages/grafana-ui/src/components/DataSourceSettings/DataSourceHttpSettings.story.tsx:116827542": [ - [9, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 44, 3, "Unexpected any. Specify a different type.", "193409811"] + "packages/grafana-ui/src/components/ConfirmModal/ConfirmModal.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] ], - "packages/grafana-ui/src/components/DataSourceSettings/DataSourceHttpSettings.tsx:737630524": [ - [79, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 45, 3, "Unexpected any. Specify a different type.", "193409811"] + "packages/grafana-ui/src/components/CustomScrollbar/CustomScrollbar.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] ], - "packages/grafana-ui/src/components/DataSourceSettings/types.ts:3393684686": [ - [9, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 72, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/DateTimePickers/DateTimePicker/DateTimePicker.story.tsx:1978322892": [ - [10, 15, 316, "Do not use any type assertions.", "3915630547"] - ], - "packages/grafana-ui/src/components/DateTimePickers/TimeOfDayPicker.tsx:2371045893": [ - [38, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/DateTimePickers/TimeRangeInput.tsx:1547773461": [ - [16, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 40, 18, "Do not use any type assertions.", "260137686"], - [103, 46, 18, "Do not use any type assertions.", "260137686"] - ], - "packages/grafana-ui/src/components/DateTimePickers/TimeRangePicker/TimeRangeForm.test.tsx:780238838": [ - [28, 13, 40, "Do not use any type assertions.", "2456632836"], - [57, 22, 35, "Do not use any type assertions.", "1540432785"], - [58, 20, 33, "Do not use any type assertions.", "3121227580"] - ], - "packages/grafana-ui/src/components/DateTimePickers/TimeZonePicker/TimeZoneOption.tsx:1052785476": [ - [17, 14, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Drawer/Drawer.tsx:1894771848": [ - [80, 13, 56, "Do not use any type assertions.", "3789270764"] - ], - "packages/grafana-ui/src/components/Dropdown/ButtonSelect.story.internal.tsx:2889647356": [ - [12, 15, 223, "Do not use any type assertions.", "3923006945"], - [38, 30, 12, "Do not use any type assertions.", "4064292234"], - [38, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Dropdown/ButtonSelect.tsx:1787105174": [ - [69, 27, 36, "Do not use any type assertions.", "1500459182"], - [88, 28, 65, "Do not use any type assertions.", "2861770434"] - ], - "packages/grafana-ui/src/components/ErrorBoundary/ErrorBoundary.test.tsx:2837089737": [ - [40, 30, 29, "Do not use any type assertions.", "3241525704"] - ], - "packages/grafana-ui/src/components/ErrorBoundary/ErrorBoundary.tsx:704867228": [ - [19, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [91, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/FileDropzone/FileDropzone.story.tsx:209832416": [ - [9, 15, 214, "Do not use any type assertions.", "3821867224"] - ], - "packages/grafana-ui/src/components/FileDropzone/FileDropzone.test.tsx:1085478471": [ - [123, 60, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/FileDropzone/FileListItem.story.tsx:4053698920": [ - [8, 15, 445, "Do not use any type assertions.", "4178556535"], - [23, 18, 46, "Do not use any type assertions.", "1055622594"], - [23, 61, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/FileUpload/FileUpload.story.tsx:2169093073": [ - [9, 15, 355, "Do not use any type assertions.", "3467230432"] - ], - "packages/grafana-ui/src/components/FilterInput/FilterInput.tsx:2921509631": [ - [16, 24, 61, "Do not use any type assertions.", "283368649"] - ], - "packages/grafana-ui/src/components/FormField/FormField.story.internal.tsx:498188260": [ - [7, 15, 444, "Do not use any type assertions.", "888987229"] - ], - "packages/grafana-ui/src/components/FormattedValueDisplay/FormattedValueDisplay.tsx:3094623394": [ - [26, 21, 25, "Do not use any type assertions.", "1212789124"] - ], - "packages/grafana-ui/src/components/Forms/FieldArray.story.tsx:2653817807": [ - [11, 15, 451, "Do not use any type assertions.", "2347852426"], - [30, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Forms/FieldValidationMessage.story.tsx:1929366057": [ - [26, 15, 13, "Do not use any type assertions.", "579567913"] - ], - "packages/grafana-ui/src/components/Forms/Form.story.tsx:2059890223": [ - [70, 7, 26, "Do not use any type assertions.", "1877289782"], - [70, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [156, 11, 26, "Do not use any type assertions.", "1877289782"], - [156, 34, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Forms/Legacy/Input/Input.story.internal.tsx:1432137901": [ - [9, 15, 504, "Do not use any type assertions.", "2442941982"] - ], - "packages/grafana-ui/src/components/Forms/Legacy/Input/Input.tsx:4273503496": [ - [52, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 29, 33, "Do not use any type assertions.", "3509409482"], - [61, 33, 33, "Do not use any type assertions.", "3509409482"] - ], - "packages/grafana-ui/src/components/Forms/Legacy/Select/IndicatorsContainer.tsx:155564644": [ - [5, 43, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Forms/Legacy/Select/Select.story.internal.tsx:3886682615": [ - [11, 15, 940, "Do not use any type assertions.", "3880167525"], - [93, 63, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Forms/Legacy/Select/Select.tsx:461381466": [ - [44, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [117, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [120, 24, 16, "Do not use any type assertions.", "190853034"], - [120, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [144, 40, 29, "Do not use any type assertions.", "48028575"], - [170, 42, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Forms/Legacy/Select/SelectOption.test.tsx:1997872372": [ - [6, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Forms/Legacy/Select/SelectOption.tsx:2882176700": [ - [6, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 62, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Forms/Legacy/Switch/Switch.story.internal.tsx:3864561762": [ - [5, 15, 179, "Do not use any type assertions.", "2045054845"] - ], - "packages/grafana-ui/src/components/Forms/Legend.story.tsx:492797371": [ - [7, 15, 221, "Do not use any type assertions.", "786478335"] - ], - "packages/grafana-ui/src/components/Forms/RadioButtonGroup/RadioButtonGroup.tsx:368441615": [ - [90, 35, 18, "Do not use any type assertions.", "1276857201"] - ], - "packages/grafana-ui/src/components/Forms/RadioButtonList/RadioButtonList.story.tsx:2166898202": [ - [17, 15, 537, "Do not use any type assertions.", "524057566"] - ], - "packages/grafana-ui/src/components/Gauge/Gauge.tsx:2245917266": [ - [31, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Graph/Graph.test.tsx:1664091255": [ - [90, 1, 13, "Do not use any type assertions.", "538937261"], - [90, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Graph/Graph.tsx:4270963526": [ - [64, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [119, 38, 21, "Do not use any type assertions.", "636255479"], - [120, 47, 30, "Do not use any type assertions.", "193636784"], - [152, 25, 40, "Do not use any type assertions.", "1290528184"], - [159, 33, 53, "Do not use any type assertions.", "682822224"], - [204, 47, 53, "Do not use any type assertions.", "682822224"], - [301, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Graph/GraphContextMenu.tsx:3875310700": [ - [22, 53, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Graph/utils.ts:3717868215": [ - [104, 56, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/GraphNG/GraphNG.tsx:94669281": [ - [38, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [65, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [96, 31, 18, "Do not use any type assertions.", "3890263992"], - [104, 24, 60, "Do not use any type assertions.", "2820169022"], - [112, 30, 11, "Do not use any type assertions.", "319541530"], - [112, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [171, 24, 28, "Do not use any type assertions.", "4099457225"], - [238, 31, 66, "Do not use any type assertions.", "15577054"], - [266, 30, 50, "Do not use any type assertions.", "3957720364"] - ], - "packages/grafana-ui/src/components/GraphNG/hooks.ts:2459679020": [ - [14, 70, 24, "Do not use any type assertions.", "1684650035"] - ], - "packages/grafana-ui/src/components/GraphNG/nullInsertThreshold.ts:2461498577": [ - [49, 26, 11, "Do not use any type assertions.", "319541530"], - [49, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [162, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/GraphNG/nullToUndefThreshold.ts:113738195": [ - [2, 71, 3, "Unexpected any. Specify a different type.", "193409811"], - [2, 101, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 28, 17, "Do not use any type assertions.", "2923536692"] - ], - "packages/grafana-ui/src/components/GraphNG/utils.test.ts:672817590": [ - [206, 6, 42, "Do not use any type assertions.", "3372195270"], - [206, 45, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/GraphNG/utils.ts:3480871323": [ - [23, 18, 35, "Do not use any type assertions.", "180126096"], - [23, 48, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/InfoBox/InfoBox.tsx:2361119830": [ - [32, 90, 15, "Do not use any type assertions.", "4235269346"] - ], - "packages/grafana-ui/src/components/Input/Input.story.tsx:2276383576": [ - [22, 15, 904, "Do not use any type assertions.", "578449452"], - [71, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [73, 27, 40, "Do not use any type assertions.", "909877733"], - [75, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 27, 40, "Do not use any type assertions.", "2000677474"] - ], - "packages/grafana-ui/src/components/JSONFormatter/JSONFormatter.tsx:109757708": [ - [7, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/JSONFormatter/json_explorer/helpers.ts:2360569371": [ - [13, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/JSONFormatter/json_explorer/json_explorer.ts:3435852606": [ - [77, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [234, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [360, 11, 30, "Do not use any type assertions.", "362356281"], - [407, 23, 75, "Do not use any type assertions.", "610234945"] - ], - "packages/grafana-ui/src/components/Layout/Layout.story.tsx:3321614690": [ - [11, 15, 1081, "Do not use any type assertions.", "880704079"] - ], - "packages/grafana-ui/src/components/Link/Link.tsx:3597739414": [ - [15, 21, 35, "Do not use any type assertions.", "503972928"] - ], - "packages/grafana-ui/src/components/List/List.story.internal.tsx:3037819010": [ - [8, 15, 359, "Do not use any type assertions.", "3086394815"], - [40, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Logs/LogDetails.test.tsx:1547946595": [ - [9, 11, 19, "Do not use any type assertions.", "202964302"], - [16, 16, 19, "Do not use any type assertions.", "1175041917"] - ], - "packages/grafana-ui/src/components/Logs/LogRowContext.test.tsx:1069492746": [ - [13, 11, 17, "Do not use any type assertions.", "1495267696"] - ], - "packages/grafana-ui/src/components/Logs/LogRowContext.tsx:339492712": [ - [136, 27, 59, "Do not use any type assertions.", "2201074319"] - ], - "packages/grafana-ui/src/components/Logs/LogRowContextProvider.test.tsx:2719724375": [ - [28, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [88, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [135, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [144, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [183, 10, 21, "Do not use any type assertions.", "1605154845"], - [183, 10, 11, "Do not use any type assertions.", "319541530"], - [183, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Logs/LogRowContextProvider.tsx:4017892628": [ - [70, 42, 27, "Do not use any type assertions.", "61827975"], - [75, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [118, 40, 24, "Do not use any type assertions.", "1212780220"], - [146, 51, 25, "Do not use any type assertions.", "442353561"], - [146, 51, 11, "Do not use any type assertions.", "319541530"], - [146, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [168, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Logs/LogRows.tsx:264659785": [ - [32, 77, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Logs/logParser.ts:4045815872": [ - [34, 7, 33, "Do not use any type assertions.", "2970566358"] - ], - "packages/grafana-ui/src/components/MatchersUI/fieldMatchersUI.ts:3716820675": [ - [9, 71, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Menu/MenuGroup.tsx:1056258905": [ - [11, 36, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Menu/MenuItem.tsx:2341320471": [ - [16, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Menu/hooks.ts:851824520": [ - [45, 5, 43, "Do not use any type assertions.", "457456565"], - [47, 7, 27, "Do not use any type assertions.", "3473622089"], - [52, 26, 84, "Do not use any type assertions.", "4147556823"], - [93, 9, 43, "Do not use any type assertions.", "457456565"] - ], - "packages/grafana-ui/src/components/Menu/utils.test.ts:4079540757": [ - [5, 7, 162, "Do not use any type assertions.", "2082532492"] - ], - "packages/grafana-ui/src/components/Modal/Modal.story.tsx:565397573": [ - [13, 15, 1541, "Do not use any type assertions.", "3915944431"] - ], - "packages/grafana-ui/src/components/Modal/ModalsContext.tsx:2265308334": [ - [3, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 59, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Monaco/CodeEditor.story.internal.tsx:3928389969": [ - [9, 15, 524, "Do not use any type assertions.", "220642822"] - ], - "packages/grafana-ui/src/components/OptionsUI/fieldColor.tsx:1007212891": [ - [55, 12, 34, "Do not use any type assertions.", "1382366269"] - ], - "packages/grafana-ui/src/components/OptionsUI/number.tsx:1704865601": [ - [22, 20, 42, "Do not use any type assertions.", "3301854123"], - [32, 20, 38, "Do not use any type assertions.", "4036227312"] - ], - "packages/grafana-ui/src/components/OptionsUI/string.tsx:2821664285": [ - [19, 20, 42, "Do not use any type assertions.", "3301854123"], - [25, 20, 38, "Do not use any type assertions.", "4036227312"] - ], - "packages/grafana-ui/src/components/OptionsUI/strings.tsx:2127538149": [ - [28, 16, 42, "Do not use any type assertions.", "3301854123"] - ], - "packages/grafana-ui/src/components/PanelChrome/PanelContext.ts:926208370": [ - [61, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 34, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/PanelChrome/index.ts:2338602328": [ - [22, 27, 39, "Do not use any type assertions.", "462300448"] - ], - "packages/grafana-ui/src/components/PanelContainer/PanelContainer.story.tsx:176625860": [ - [8, 15, 167, "Do not use any type assertions.", "4072497178"] - ], - "packages/grafana-ui/src/components/PluginSignatureBadge/PluginSignatureBadge.tsx:3499108886": [ - [21, 13, 20, "Do not use any type assertions.", "3451286408"], - [21, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Portal/Portal.tsx:658106202": [ - [8, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/QueryField/QueryField.test.tsx:375894800": [ - [41, 18, 40, "Do not use any type assertions.", "3831086404"], - [58, 18, 40, "Do not use any type assertions.", "3831086404"], - [77, 18, 40, "Do not use any type assertions.", "3831086404"], - [86, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [95, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [105, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [114, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/QueryField/QueryField.tsx:2052418451": [ - [44, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 67, 3, "Unexpected any. Specify a different type.", "193409811"], - [75, 55, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/RefreshPicker/RefreshPicker.tsx:3884900799": [ - [15, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [87, 22, 26, "Do not use any type assertions.", "1691945126"], - [87, 45, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/SecretFormField/SecretFormField.story.internal.tsx:2020978154": [ - [9, 15, 375, "Do not use any type assertions.", "1137633412"] - ], - "packages/grafana-ui/src/components/SecretInput/SecretInput.story.tsx:3740377999": [ - [7, 15, 524, "Do not use any type assertions.", "1482818589"] - ], - "packages/grafana-ui/src/components/Segment/Segment.story.tsx:974932938": [ - [11, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [65, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [82, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [114, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [117, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [133, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Segment/SegmentAsync.story.tsx:4001860077": [ - [13, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [110, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [145, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [186, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Segment/SegmentInput.story.tsx:4180377469": [ - [5, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 19, 14, "Do not use any type assertions.", "2438661535"], - [39, 19, 14, "Do not use any type assertions.", "2438661535"], - [56, 19, 14, "Do not use any type assertions.", "2438661535"], - [64, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 17, 14, "Do not use any type assertions.", "2438661535"], - [80, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [83, 44, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Segment/SegmentSelect.tsx:3586062510": [ - [78, 26, 75, "Do not use any type assertions.", "674804243"], - [80, 32, 18, "Do not use any type assertions.", "1315908082"], - [80, 47, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Select/IndicatorsContainer.tsx:2576361992": [ - [6, 92, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Select/InputControl.tsx:4227314553": [ - [16, 14, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Select/MultiValue.tsx:3745645241": [ - [8, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 14, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Select/Select.story.tsx:1985860710": [ - [15, 15, 1194, "Do not use any type assertions.", "2271241168"], - [82, 31, 18, "Do not use any type assertions.", "3962222795"], - [173, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [194, 29, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Select/SelectBase.tsx:11926897": [ - [49, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 22, 41, "Do not use any type assertions.", "3660659670"], - [59, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [180, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [183, 20, 12, "Do not use any type assertions.", "4064292234"], - [183, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [251, 27, 16, "Do not use any type assertions.", "190853034"], - [251, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [260, 27, 61, "Do not use any type assertions.", "2727074726"], - [260, 85, 3, "Unexpected any. Specify a different type.", "193409811"], - [276, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [303, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [319, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [322, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [325, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [332, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [335, 29, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Select/SelectMenu.tsx:2020107547": [ - [37, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 32, 21, "Do not use any type assertions.", "1938710478"] - ], - "packages/grafana-ui/src/components/Select/SelectOptionGroup.tsx:1702547683": [ - [10, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Select/SingleValue.tsx:1080061765": [ - [70, 15, 36, "Do not use any type assertions.", "2686049678"] - ], - "packages/grafana-ui/src/components/Select/ValueContainer.tsx:2056628020": [ - [9, 53, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Select/resetSelectStyles.ts:4134211333": [ - [49, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Select/types.ts:2508476461": [ - [23, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [110, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [127, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [130, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Select/utils.ts:3159959231": [ - [7, 34, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/SetInterval/SetInterval.tsx:3583935326": [ - [17, 14, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/SingleStatShared/SingleStatBaseOptions.test.ts:883505702": [ - [38, 37, 12, "Do not use any type assertions.", "1619708599"], - [38, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 12, 12, "Do not use any type assertions.", "1619708599"], - [39, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [109, 37, 12, "Do not use any type assertions.", "1619708599"], - [109, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [111, 12, 12, "Do not use any type assertions.", "1619708599"], - [111, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [145, 37, 12, "Do not use any type assertions.", "1619708599"], - [145, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [146, 12, 12, "Do not use any type assertions.", "1619708599"], - [146, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [178, 37, 12, "Do not use any type assertions.", "1619708599"], - [178, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [179, 12, 12, "Do not use any type assertions.", "1619708599"], - [179, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [183, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [194, 18, 16, "Do not use any type assertions.", "388222280"], - [202, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [207, 18, 16, "Do not use any type assertions.", "388222280"], - [214, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [226, 18, 16, "Do not use any type assertions.", "388222280"], - [234, 18, 207, "Do not use any type assertions.", "1644126696"], - [234, 18, 193, "Do not use any type assertions.", "1001426691"], - [245, 37, 12, "Do not use any type assertions.", "1619708599"], - [245, 46, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/SingleStatShared/SingleStatBaseOptions.ts:1345890029": [ - [28, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 90, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 108, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 18, 138, "Do not use any type assertions.", "607870480"], - [61, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [127, 11, 9, "Do not use any type assertions.", "3692209159"], - [127, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [131, 16, 20, "Do not use any type assertions.", "2847318601"], - [131, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [210, 22, 33, "Do not use any type assertions.", "4243569607"], - [210, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [213, 14, 33, "Do not use any type assertions.", "4243569607"], - [213, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [238, 9, 32, "Do not use any type assertions.", "3011596554"], - [241, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [275, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [281, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [282, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [310, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [330, 53, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Slider/RangeSlider.story.tsx:1901020200": [ - [7, 15, 289, "Do not use any type assertions.", "512594523"], - [31, 13, 18, "Do not use any type assertions.", "2027900439"], - [32, 13, 18, "Do not use any type assertions.", "2502762633"] - ], - "packages/grafana-ui/src/components/Slider/Slider.story.tsx:2674564218": [ - [9, 15, 389, "Do not use any type assertions.", "1978906763"], - [31, 15, 27, "Do not use any type assertions.", "1309419871"], - [46, 13, 18, "Do not use any type assertions.", "2027900439"], - [47, 13, 18, "Do not use any type assertions.", "2502762633"], - [63, 13, 18, "Do not use any type assertions.", "2027900439"], - [64, 13, 18, "Do not use any type assertions.", "2502762633"] - ], - "packages/grafana-ui/src/components/Sparkline/Sparkline.tsx:2698334445": [ - [107, 11, 128, "Do not use any type assertions.", "3925071687"], - [151, 21, 45, "Do not use any type assertions.", "2557234111"] - ], - "packages/grafana-ui/src/components/Spinner/Spinner.story.tsx:2618914032": [ - [10, 15, 364, "Do not use any type assertions.", "108163397"] - ], - "packages/grafana-ui/src/components/StatsPicker/StatsPicker.story.tsx:2417879058": [ - [14, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [57, 15, 226, "Do not use any type assertions.", "2638221303"] - ], - "packages/grafana-ui/src/components/Switch/Switch.story.tsx:3337756944": [ - [11, 15, 258, "Do not use any type assertions.", "1871090638"] - ], - "packages/grafana-ui/src/components/Table/BarGaugeCell.tsx:2469721145": [ - [46, 13, 17, "Do not use any type assertions.", "3640560184"] - ], - "packages/grafana-ui/src/components/Table/CellActions.tsx:3266589396": [ - [20, 34, 40, "Do not use any type assertions.", "91092480"], - [22, 10, 16, "Do not use any type assertions.", "737436615"], - [23, 22, 25, "Do not use any type assertions.", "1478996352"] - ], - "packages/grafana-ui/src/components/Table/DefaultCell.tsx:1844923424": [ - [14, 34, 40, "Do not use any type assertions.", "91092480"] - ], - "packages/grafana-ui/src/components/Table/Filter.tsx:1102571026": [ - [13, 10, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Table/FilterPopup.tsx:1295672339": [ - [13, 10, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Table/FooterCell.tsx:2701278012": [ - [45, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Table/FooterRow.tsx:2291230765": [ - [63, 38, 13, "Do not use any type assertions.", "947160887"], - [63, 48, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Table/HeaderRow.tsx:1383285587": [ - [44, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 38, 13, "Do not use any type assertions.", "947160887"], - [53, 48, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Table/JSONViewCell.tsx:4022130242": [ - [11, 34, 40, "Do not use any type assertions.", "91092480"] - ], - "packages/grafana-ui/src/components/Table/Table.story.tsx:4272567078": [ - [23, 15, 364, "Do not use any type assertions.", "4121186137"] - ], - "packages/grafana-ui/src/components/Table/Table.tsx:1333323294": [ - [55, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 26, 45, "Do not use any type assertions.", "2766835372"], - [59, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [62, 37, 62, "Do not use any type assertions.", "2911350325"], - [108, 34, 16, "Do not use any type assertions.", "1757113281"], - [178, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Table/TableCell.tsx:3501355384": [ - [17, 17, 40, "Do not use any type assertions.", "3164151865"], - [17, 17, 18, "Do not use any type assertions.", "4078154591"], - [17, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 38, 18, "Do not use any type assertions.", "4078154591"], - [25, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 21, 27, "Do not use any type assertions.", "3444117730"], - [35, 9, 145, "Do not use any type assertions.", "3003961010"] - ], - "packages/grafana-ui/src/components/Table/TableCellInspectModal.tsx:2190891910": [ - [9, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Table/types.ts:3687296109": [ - [11, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 50, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Table/utils.test.ts:3753853216": [ - [84, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [108, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [109, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [120, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [121, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [133, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [144, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [145, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [182, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [190, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [205, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [213, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [234, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [253, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [270, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [284, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [310, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [468, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [469, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Table/utils.ts:1509223688": [ - [27, 19, 40, "Do not use any type assertions.", "91092480"], - [56, 30, 48, "Do not use any type assertions.", "712879271"], - [85, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [171, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [176, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [186, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [198, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [200, 74, 23, "Do not use any type assertions.", "93406366"], - [236, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [236, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [241, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [241, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [247, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/TableInputCSV/TableInputCSV.story.internal.tsx:2990998239": [ - [10, 15, 106, "Do not use any type assertions.", "4215296854"] - ], - "packages/grafana-ui/src/components/TableInputCSV/TableInputCSV.tsx:3877918625": [ - [38, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [62, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Tags/Tag.tsx:3517140980": [ - [13, 81, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 68, 44, "Do not use any type assertions.", "1737022869"] - ], - "packages/grafana-ui/src/components/TagsInput/TagsInput.story.tsx:2111620082": [ - [10, 15, 228, "Do not use any type assertions.", "1681992478"] - ], - "packages/grafana-ui/src/components/TextArea/TextArea.story.tsx:1124997742": [ - [9, 15, 302, "Do not use any type assertions.", "3860919919"] - ], - "packages/grafana-ui/src/components/ThemeDemos/EmotionPerfTest.tsx:3080227819": [ - [175, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [188, 53, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/ThemeDemos/ThemeDemo.tsx:2356533337": [ - [171, 48, 16, "Do not use any type assertions.", "1966598126"], - [171, 61, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/TimeSeries/TimeSeries.tsx:2866260042": [ - [20, 31, 18, "Do not use any type assertions.", "3890263992"], - [23, 31, 28, "Do not use any type assertions.", "4099457225"], - [56, 22, 24, "Do not use any type assertions.", "4121028738"], - [56, 43, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/TimeSeries/utils.ts:3806893813": [ - [33, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [135, 19, 146, "Do not use any type assertions.", "3723122882"] - ], - "packages/grafana-ui/src/components/Tooltip/PopoverController.tsx:4009959390": [ - [28, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Tooltip/Tooltip.tsx:3266011374": [ - [50, 38, 13, "Do not use any type assertions.", "1133047536"], - [50, 48, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Tooltip/types.ts:526199087": [ - [9, 57, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/Typeahead/Typeahead.test.tsx:972524250": [ - [38, 12, 26, "Do not use any type assertions.", "1201483287"], - [39, 5, 33, "Do not use any type assertions.", "1474341583"], - [40, 12, 26, "Do not use any type assertions.", "1201483287"] - ], - "packages/grafana-ui/src/components/Typeahead/TypeaheadItem.tsx:4215557017": [ - [15, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/UnitPicker/UnitPicker.tsx:3596524112": [ - [62, 17, 32, "Do not use any type assertions.", "933649629"] - ], - "packages/grafana-ui/src/components/VizLegend/SeriesIcon.test.tsx:314184399": [ - [8, 16, 39, "Do not use any type assertions.", "3703862967"], - [17, 16, 39, "Do not use any type assertions.", "3703862967"] - ], - "packages/grafana-ui/src/components/VizLegend/VizLegend.story.tsx:646905701": [ - [11, 15, 421, "Do not use any type assertions.", "350344902"] - ], - "packages/grafana-ui/src/components/VizLegend/VizLegendListItem.tsx:1525592039": [ - [24, 54, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/VizLegend/types.ts:4206821108": [ - [28, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/VizRepeater/VizRepeater.tsx:193962520": [ - [21, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [89, 90, 44, "Do not use any type assertions.", "861562643"], - [94, 107, 7, "Do not use any type assertions.", "3399135989"], - [153, 8, 37, "Do not use any type assertions.", "2409895545"], - [193, 103, 7, "Do not use any type assertions.", "3399135989"] - ], - "packages/grafana-ui/src/components/VizTooltip/SeriesTable.story.tsx:1922572694": [ - [5, 15, 138, "Do not use any type assertions.", "2079187464"] - ], - "packages/grafana-ui/src/components/VizTooltip/VizTooltip.tsx:3920034680": [ - [17, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 31, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/uPlot/Plot.test.tsx:640285701": [ - [44, 12, 105, "Do not use any type assertions.", "2331303430"], - [58, 19, 17, "Do not use any type assertions.", "2676113316"], - [157, 27, 17, "Do not use any type assertions.", "2676113316"] - ], - "packages/grafana-ui/src/components/uPlot/Plot.tsx:3438512557": [ - [70, 10, 6, "Do not use any type assertions.", "3800737431"], - [75, 35, 30, "Do not use any type assertions.", "911619603"], - [103, 20, 30, "Do not use any type assertions.", "911619603"] - ], - "packages/grafana-ui/src/components/uPlot/PlotLegend.tsx:716075126": [ - [22, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 22, 2671, "Do not use any type assertions.", "2702634688"] - ], - "packages/grafana-ui/src/components/uPlot/config.ts:849082637": [ - [16, 13, 205, "Do not use any type assertions.", "3930631191"], - [22, 21, 463, "Do not use any type assertions.", "2561551533"], - [29, 16, 318, "Do not use any type assertions.", "115655117"], - [35, 14, 258, "Do not use any type assertions.", "18030963"], - [41, 17, 322, "Do not use any type assertions.", "2799927168"], - [48, 16, 435, "Do not use any type assertions.", "1354154688"], - [59, 12, 198, "Do not use any type assertions.", "2203342350"], - [65, 26, 341, "Do not use any type assertions.", "3792878509"] - ], - "packages/grafana-ui/src/components/uPlot/config/UPlotAxisBuilder.ts:895023121": [ - [23, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [170, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [174, 5, 13, "Do not use any type assertions.", "268797995"], - [174, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [197, 20, 25, "Do not use any type assertions.", "3325393292"], - [197, 42, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/uPlot/config/UPlotConfigBuilder.ts:3268647805": [ - [76, 27, 11, "Do not use any type assertions.", "3335771810"], - [76, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [190, 13, 25, "Do not use any type assertions.", "3170794541"], - [190, 13, 15, "Do not use any type assertions.", "363922340"], - [284, 50, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/uPlot/config/UPlotSeriesBuilder.ts:846762376": [ - [264, 15, 28, "Do not use any type assertions.", "4256246423"] - ], - "packages/grafana-ui/src/components/uPlot/config/gradientFills.ts:22839467": [ - [258, 12, 106, "Do not use any type assertions.", "2327994236"], - [266, 12, 171, "Do not use any type assertions.", "1132329361"], - [279, 10, 167, "Do not use any type assertions.", "3832179203"] - ], - "packages/grafana-ui/src/components/uPlot/plugins/TooltipPlugin.tsx:2627329618": [ - [218, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/uPlot/types.ts:1918909040": [ - [16, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/components/uPlot/utils.ts:20167453": [ - [70, 13, 20, "Do not use any type assertions.", "1571376654"], - [131, 20, 34, "Do not use any type assertions.", "1148863494"], - [134, 11, 35, "Do not use any type assertions.", "2376372234"], - [136, 11, 45, "Do not use any type assertions.", "1627514634"], - [164, 13, 41, "Do not use any type assertions.", "1747339107"], - [261, 14, 32, "Do not use any type assertions.", "319021204"] - ], - "packages/grafana-ui/src/options/builder/axis.tsx:1832382450": [ - [91, 14, 30, "Do not use any type assertions.", "3478399522"], - [91, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 16, 30, "Do not use any type assertions.", "3478399522"], - [92, 43, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/options/builder/hideSeries.tsx:3188917123": [ - [21, 20, 27, "Do not use any type assertions.", "170788115"] - ], - "packages/grafana-ui/src/options/builder/legend.tsx:3994250443": [ - [56, 14, 57, "Do not use any type assertions.", "440836321"], - [56, 68, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/options/builder/stacking.tsx:2622601716": [ - [20, 79, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/slate-plugins/braces.test.tsx:1440546721": [ - [10, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 19, 14, "Do not use any type assertions.", "1842621847"], - [22, 35, 24, "Do not use any type assertions.", "151852294"], - [22, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 12, 14, "Do not use any type assertions.", "1842621847"], - [30, 28, 39, "Do not use any type assertions.", "76766070"], - [30, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 28, 14, "Do not use any type assertions.", "1842621847"], - [38, 44, 39, "Do not use any type assertions.", "76766070"], - [38, 80, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 19, 16, "Do not use any type assertions.", "2636712335"], - [46, 37, 24, "Do not use any type assertions.", "151852294"], - [46, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 19, 16, "Do not use any type assertions.", "1886933000"], - [48, 37, 24, "Do not use any type assertions.", "151852294"], - [48, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 19, 15, "Do not use any type assertions.", "2680268070"], - [56, 36, 24, "Do not use any type assertions.", "151852294"], - [56, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 19, 15, "Do not use any type assertions.", "3831409861"], - [58, 36, 40, "Do not use any type assertions.", "1991491554"], - [58, 73, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/slate-plugins/braces.ts:3328717924": [ - [5, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 23, 22, "Do not use any type assertions.", "3167227514"], - [46, 36, 447, "Do not use any type assertions.", "1040149718"] - ], - "packages/grafana-ui/src/slate-plugins/clear.test.tsx:1085648664": [ - [18, 12, 14, "Do not use any type assertions.", "1842621847"], - [18, 28, 24, "Do not use any type assertions.", "151852294"], - [18, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 12, 14, "Do not use any type assertions.", "1842621847"], - [29, 28, 24, "Do not use any type assertions.", "151852294"], - [29, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 12, 14, "Do not use any type assertions.", "1842621847"], - [40, 28, 39, "Do not use any type assertions.", "3909909495"], - [40, 64, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/slate-plugins/clear.ts:2069900235": [ - [8, 23, 22, "Do not use any type assertions.", "3167227514"] - ], - "packages/grafana-ui/src/slate-plugins/clipboard.ts:1841948727": [ - [20, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 24, 23, "Do not use any type assertions.", "4156927707"], - [42, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 24, 23, "Do not use any type assertions.", "4156927707"], - [63, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 24, 23, "Do not use any type assertions.", "4156927707"] - ], - "packages/grafana-ui/src/slate-plugins/indentation.ts:1430241711": [ - [77, 23, 22, "Do not use any type assertions.", "3167227514"] - ], - "packages/grafana-ui/src/slate-plugins/newline.ts:3997690417": [ - [19, 23, 22, "Do not use any type assertions.", "3167227514"] - ], - "packages/grafana-ui/src/slate-plugins/runner.test.tsx:446043290": [ - [16, 6, 75, "Do not use any type assertions.", "2270560469"], - [17, 6, 24, "Do not use any type assertions.", "151852294"], - [17, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/slate-plugins/runner.ts:4120064214": [ - [4, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 23, 22, "Do not use any type assertions.", "3167227514"] - ], - "packages/grafana-ui/src/slate-plugins/selection_shortcuts.ts:1203176210": [ - [10, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 23, 22, "Do not use any type assertions.", "3167227514"] - ], - "packages/grafana-ui/src/slate-plugins/slate-prism/index.ts:1997186882": [ - [23, 75, 30, "Do not use any type assertions.", "3079788355"], - [32, 33, 13, "Do not use any type assertions.", "2538516926"], - [58, 8, 13, "Do not use any type assertions.", "3207940768"], - [58, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/slate-plugins/slate-prism/options.tsx:2723601752": [ - [37, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [70, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/slate-plugins/suggestions.test.tsx:3654981205": [ - [11, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 90, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 106, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 5, 37, "Do not use any type assertions.", "331267989"], - [47, 5, 35, "Do not use any type assertions.", "274733547"], - [48, 5, 36, "Do not use any type assertions.", "1483209967"], - [58, 32, 9, "Do not use any type assertions.", "3692209159"], - [58, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/slate-plugins/suggestions.tsx:855005150": [ - [68, 23, 22, "Do not use any type assertions.", "3167227514"], - [205, 33, 48, "Do not use any type assertions.", "2033953480"], - [229, 64, 13, "Do not use any type assertions.", "3207940768"], - [229, 74, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/themes/ThemeContext.tsx:2938353757": [ - [44, 9, 20, "Do not use any type assertions.", "953347148"], - [64, 9, 20, "Do not use any type assertions.", "953347148"], - [89, 29, 56, "Do not use any type assertions.", "1334438079"], - [109, 29, 56, "Do not use any type assertions.", "1334438079"], - [123, 41, 22, "Do not use any type assertions.", "1904680441"] - ], - "packages/grafana-ui/src/themes/stylesFactory.ts:1104368438": [ - [8, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 71, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/types/forms.ts:3352347939": [ - [10, 31, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/types/jquery.d.ts:143083225": [ - [1, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [1, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [2, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/types/mdx.d.ts:2961840461": [ - [1, 28, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/types/react-table-config.d.ts:551377687": [ - [64, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [107, 89, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/utils/colors.ts:349987544": [ - [110, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/utils/dataLinks.ts:2916992126": [ - [16, 12, 71, "Do not use any type assertions.", "1504235577"] - ], - "packages/grafana-ui/src/utils/debug.ts:2900904491": [ - [6, 56, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/utils/dom.ts:3978904931": [ - [2, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 42, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/utils/logger.ts:3364646929": [ - [5, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 49, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/utils/reactUtils.ts:355538771": [ - [26, 46, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/utils/standardEditors.tsx:551876182": [ - [45, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 12, 49, "Do not use any type assertions.", "1580240726"], - [50, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 14, 49, "Do not use any type assertions.", "1580240726"], - [51, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 12, 49, "Do not use any type assertions.", "1575774157"], - [67, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 14, 49, "Do not use any type assertions.", "1575774157"], - [68, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 12, 51, "Do not use any type assertions.", "2103665032"], - [85, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [86, 14, 51, "Do not use any type assertions.", "2103665032"], - [86, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [96, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [102, 12, 51, "Do not use any type assertions.", "2103665032"], - [102, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [103, 14, 51, "Do not use any type assertions.", "2103665032"], - [103, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [114, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [119, 12, 51, "Do not use any type assertions.", "2103665032"], - [119, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [120, 14, 51, "Do not use any type assertions.", "2103665032"], - [120, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [134, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [140, 12, 49, "Do not use any type assertions.", "1580240726"], - [140, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [141, 14, 49, "Do not use any type assertions.", "1580240726"], - [141, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [152, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [156, 12, 50, "Do not use any type assertions.", "2031479992"], - [156, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [157, 14, 50, "Do not use any type assertions.", "2031479992"], - [157, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [167, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [171, 12, 55, "Do not use any type assertions.", "3856481684"], - [171, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [172, 14, 55, "Do not use any type assertions.", "3856481684"], - [172, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [195, 12, 24, "Do not use any type assertions.", "2407037800"], - [195, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [202, 12, 24, "Do not use any type assertions.", "1087034254"], - [202, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [209, 12, 24, "Do not use any type assertions.", "3569584286"], - [209, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [216, 12, 24, "Do not use any type assertions.", "1791631148"], - [216, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [228, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [232, 12, 24, "Do not use any type assertions.", "4014459747"], - [232, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [235, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [239, 12, 29, "Do not use any type assertions.", "741504938"], - [239, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [242, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [255, 12, 22, "Do not use any type assertions.", "1224120685"], - [255, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [271, 12, 23, "Do not use any type assertions.", "3442205151"], - [271, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [278, 12, 27, "Do not use any type assertions.", "3217826376"], - [278, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [284, 12, 24, "Do not use any type assertions.", "295031911"], - [284, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [292, 12, 21, "Do not use any type assertions.", "695289036"], - [292, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [299, 12, 22, "Do not use any type assertions.", "3148816930"], - [299, 31, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/utils/storybook/ThemedDocsContainer.tsx:1765035789": [ - [9, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/utils/storybook/UseState.tsx:2528204858": [ - [18, 79, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 98, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/utils/storybook/withTheme.tsx:338804582": [ - [38, 72, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 85, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/utils/table.ts:3564715667": [ - [8, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/utils/useAsyncDependency.ts:4089662838": [ - [3, 60, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/utils/useCombinedRefs.ts:2942279685": [ - [2, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/utils/useDelayedSwitch.ts:1215351356": [ - [27, 16, 115, "Do not use any type assertions.", "820979774"], - [30, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 18, 48, "Do not use any type assertions.", "2127100413"], - [42, 63, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/grafana-ui/src/utils/validate.ts:1684651865": [ - [14, 5, 14, "Do not use any type assertions.", "3854427458"] - ], - "packages/jaeger-ui-components/src/ScrollManager.tsx:3035492136": [ - [160, 33, 36, "Do not use any type assertions.", "3699820928"], - [270, 21, 16, "Do not use any type assertions.", "2939667099"], - [270, 34, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/jaeger-ui-components/src/TracePageHeader/SpanGraph/Scrubber.tsx:3358092419": [ - [77, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/jaeger-ui-components/src/TracePageHeader/SpanGraph/render-into-canvas.tsx:2313347955": [ - [41, 14, 69, "Do not use any type assertions.", "3255770557"] - ], - "packages/jaeger-ui-components/src/TraceTimelineViewer/ListView/index.tsx:584844966": [ - [197, 20, 31, "Do not use any type assertions.", "3947114321"], - [197, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [370, 32, 15, "Do not use any type assertions.", "2822865597"], - [370, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [482, 16, 24, "Do not use any type assertions.", "2215703415"] - ], - "packages/jaeger-ui-components/src/TraceTimelineViewer/SpanBar.tsx:1954428690": [ - [97, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/jaeger-ui-components/src/TraceTimelineViewer/SpanDetail/KeyValuesTable.tsx:1594863792": [ - [77, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/jaeger-ui-components/src/TraceTimelineViewer/SpanDetail/index.tsx:2178113859": [ - [205, 16, 63, "Do not use any type assertions.", "1292531531"], - [205, 76, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/jaeger-ui-components/src/TraceTimelineViewer/TimelineHeaderRow/TimelineViewingLayer.tsx:1803925306": [ - [87, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/jaeger-ui-components/src/TraceTimelineViewer/TimelineRow.tsx:1261511008": [ - [63, 72, 11, "Do not use any type assertions.", "3094336209"], - [63, 80, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/jaeger-ui-components/src/TraceTimelineViewer/VirtualizedTraceView.tsx:506313732": [ - [209, 25, 64, "Do not use any type assertions.", "837889268"] - ], - "packages/jaeger-ui-components/src/TraceTimelineViewer/utils.tsx:1351781976": [ - [59, 47, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/jaeger-ui-components/src/common/BreakableText.tsx:607280143": [ - [41, 3, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/jaeger-ui-components/src/common/UiFindInput.tsx:1627978365": [ - [22, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/jaeger-ui-components/src/constants/index.tsx:1261379693": [ - [14, 45, 10, "Do not use any type assertions.", "1495169303"], - [15, 35, 58, "Do not use any type assertions.", "3150996023"], - [17, 26, 28, "Do not use any type assertions.", "1117588535"], - [18, 27, 30, "Do not use any type assertions.", "2314628631"], - [19, 29, 34, "Do not use any type assertions.", "305841047"] - ], - "packages/jaeger-ui-components/src/constants/tag-keys.tsx:3681180096": [ - [14, 27, 30, "Do not use any type assertions.", "3485955927"], - [15, 28, 32, "Do not use any type assertions.", "2130228727"], - [16, 25, 26, "Do not use any type assertions.", "3068285431"] - ], - "packages/jaeger-ui-components/src/keyboard-shortcuts.tsx:1655200307": [ - [21, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/jaeger-ui-components/src/model/link-patterns.tsx:1549086560": [ - [27, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 95, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 69, 3, "Unexpected any. Specify a different type.", "193409811"], - [76, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [100, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [102, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [141, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [147, 21, 40, "Do not use any type assertions.", "3412752140"], - [154, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [156, 20, 24, "Do not use any type assertions.", "302652929"], - [195, 44, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/jaeger-ui-components/src/model/transform-trace-data.tsx:1737944631": [ - [91, 28, 26, "Do not use any type assertions.", "3130187028"], - [132, 17, 32, "Do not use any type assertions.", "4255987122"], - [149, 22, 36, "Do not use any type assertions.", "2906569453"] - ], - "packages/jaeger-ui-components/src/types/api-error.tsx:2906617817": [ - [18, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/jaeger-ui-components/src/types/links.ts:2220460756": [ - [6, 20, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/jaeger-ui-components/src/types/trace.ts:2713085441": [ - [22, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/jaeger-ui-components/src/utils/DraggableManager/DraggableManager.tsx:2649290653": [ - [62, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [65, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [144, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [177, 59, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/jaeger-ui-components/src/utils/DraggableManager/types.tsx:2434245543": [ - [29, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "packages/jaeger-ui-components/src/utils/date.tsx:2495564065": [ - [126, 42, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "plugins-bundled/internal/input-datasource/src/InputDatasource.test.ts:752523523": [ - [20, 10, 16, "Do not use any type assertions.", "1747412709"], - [46, 29, 50, "Do not use any type assertions.", "3997247182"], - [46, 29, 15, "Do not use any type assertions.", "363922340"] - ], - "plugins-bundled/internal/input-datasource/src/InputDatasource.ts:1066513538": [ - [35, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [99, 12, 17, "Do not use any type assertions.", "333017354"] - ], - "public/app/angular/AngularApp.ts:689377250": [ - [26, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [62, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [62, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 50, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/AngularLocationWrapper.test.ts:631669454": [ - [102, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/AngularLocationWrapper.ts:1423734202": [ - [47, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [86, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [86, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [123, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [128, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/GrafanaCtrl.ts:3249015253": [ - [22, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [47, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 73, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/array_join.ts:1579058154": [ - [10, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 18, 19, "Do not use any type assertions.", "2269067965"], - [17, 34, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/autofill_event_fix.ts:253986628": [ - [3, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/bridgeReactAngularRouting.ts:2292232631": [ - [13, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 22, 59, "Do not use any type assertions.", "1244454133"], - [35, 22, 39, "Do not use any type assertions.", "3034627950"] - ], - "public/app/angular/bsTooltip.ts:2352798406": [ - [8, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 42, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/bsTypeahead.ts:4160293153": [ - [8, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 80, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 75, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 36, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/components/HttpSettingsCtrl.ts:1808342349": [ - [12, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 46, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/components/code_editor/brace.d.ts:613747405": [ - [1, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/components/code_editor/code_editor.ts:2516425709": [ - [43, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [89, 3, 26, "Do not use any type assertions.", "2490724926"], - [89, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [160, 24, 17, "Do not use any type assertions.", "813926221"], - [160, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/components/form_dropdown/form_dropdown.ts:1877019031": [ - [6, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 101, 3, "Unexpected any. Specify a different type.", "193409811"], - [113, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [119, 26, 17, "Do not use any type assertions.", "2922340198"], - [119, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [123, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [133, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [134, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [138, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [175, 21, 33, "Do not use any type assertions.", "3554628726"], - [192, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [203, 11, 17, "Do not use any type assertions.", "2922340198"], - [203, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [203, 38, 17, "Do not use any type assertions.", "2922340198"], - [203, 52, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/components/info_popover.ts:3727139485": [ - [11, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 69, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 40, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/components/jsontree.ts:3388830801": [ - [12, 20, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/components/plugin_component.ts:409225022": [ - [11, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 74, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [60, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [60, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [90, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [100, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [100, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [100, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [104, 34, 38, "Do not use any type assertions.", "3844846092"], - [190, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [190, 69, 3, "Unexpected any. Specify a different type.", "193409811"], - [212, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [212, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [212, 88, 3, "Unexpected any. Specify a different type.", "193409811"], - [236, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [236, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [238, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [241, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/components/query_part_editor.ts:213249719": [ - [19, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [57, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [75, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [75, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [90, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [102, 88, 3, "Unexpected any. Specify a different type.", "193409811"], - [140, 82, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/components/scroll.ts:2556150362": [ - [18, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 41, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/components/spectrum_picker.ts:2299009033": [ - [15, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 58, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/components/sql_part/sql_part.ts:151931650": [ - [6, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/components/sql_part/sql_part_editor.ts:3792560442": [ - [17, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [89, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [94, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [106, 102, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 80, 3, "Unexpected any. Specify a different type.", "193409811"], - [161, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/components/switch.ts:1191272002": [ - [33, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 6, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 45, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/diff-view.ts:127399987": [ - [7, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 96, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/dropdown_typeahead.ts:4203413212": [ - [6, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [47, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [86, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [139, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [155, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [155, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [155, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [164, 14, 11, "Do not use any type assertions.", "319541530"], - [164, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [174, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [187, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [212, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [226, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/filters/filters.ts:3347507861": [ - [9, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 48, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/give_focus.ts:1681691087": [ - [3, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/injectorMonkeyPatch.ts:1490966431": [ - [0, 69, 3, "Unexpected any. Specify a different type.", "193409811"], - [2, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [2, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [2, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [2, 67, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/jquery_extended.ts:3729628": [ - [11, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 58, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/metric_segment.ts:1321135597": [ - [8, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [47, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [87, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [89, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [191, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [203, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [203, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [203, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [204, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [206, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [207, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [227, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [241, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/misc.ts:3277425257": [ - [5, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [55, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [95, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [95, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [95, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [127, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [127, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [127, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [128, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [128, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [168, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [168, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [168, 63, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/ng_model_on_blur.ts:2232038420": [ - [9, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 62, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/panel/metrics_panel_ctrl.ts:2577063664": [ - [27, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [55, 24, 47, "Do not use any type assertions.", "593421894"], - [104, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [109, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [189, 18, 24, "Do not use any type assertions.", "1069295760"] - ], - "public/app/angular/panel/panel_ctrl.ts:2530362175": [ - [18, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 71, 3, "Unexpected any. Specify a different type.", "193409811"], - [104, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [112, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/panel/panel_directive.ts:3624721699": [ - [23, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 13, 11, "Do not use any type assertions.", "90408040"], - [37, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/panel/panel_editor_tab.ts:419020677": [ - [3, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/panel/query_ctrl.ts:3529861620": [ - [3, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 29, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/panel/query_editor_row.ts:345962283": [ - [3, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/panel/specs/metrics_panel_ctrl.test.ts:2425669916": [ - [3, 8, 58, "Do not use any type assertions.", "2751778796"], - [3, 8, 48, "Do not use any type assertions.", "1905604299"], - [34, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [49, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/partials.ts:3860455917": [ - [0, 17, 14, "Do not use any type assertions.", "644252236"], - [0, 28, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/promiseToDigest.test.ts:3140800728": [ - [7, 29, 42, "Do not use any type assertions.", "1025530591"], - [7, 29, 32, "Do not use any type assertions.", "2296359342"], - [7, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 29, 42, "Do not use any type assertions.", "1025530591"], - [17, 29, 32, "Do not use any type assertions.", "2296359342"], - [17, 58, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/promiseToDigest.ts:3093996223": [ - [2, 69, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/react2angular.ts:2196616883": [ - [3, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 78, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/rebuild_on_change.ts:492662551": [ - [4, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 21, 36, "Do not use any type assertions.", "255543291"], - [13, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 69, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 88, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 44, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/services/AngularLoader.ts:3551141883": [ - [9, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/services/UtilSrv.ts:675343290": [ - [10, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/services/annotations_srv.ts:1310742461": [ - [28, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 49, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/services/dynamic_directive_srv.ts:218403107": [ - [8, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/services/nav_model_srv.ts:1949768361": [ - [57, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/services/ng_react.ts:1219930949": [ - [21, 11, 32, "Do not use any type assertions.", "649603837"], - [21, 11, 15, "Do not use any type assertions.", "3991448280"], - [48, 9, 42, "Do not use any type assertions.", "352719604"], - [48, 9, 25, "Do not use any type assertions.", "2139286641"], - [52, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [52, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [57, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [84, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [84, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [84, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [108, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [108, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [108, 87, 3, "Unexpected any. Specify a different type.", "193409811"], - [142, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [142, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [149, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [154, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [159, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [171, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [179, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [202, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [202, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [206, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [206, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [260, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [260, 83, 3, "Unexpected any. Specify a different type.", "193409811"], - [264, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [264, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [272, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [273, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/services/popover_srv.ts:2038480519": [ - [8, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 86, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 14, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/services/segment_srv.ts:1881144569": [ - [5, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [91, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/services/timer.ts:1536404524": [ - [8, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/angular/tags.ts:2582216727": [ - [17, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [73, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [89, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/app.ts:1307968344": [ - [82, 25, 14, "Do not use any type assertions.", "644252236"], - [82, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [83, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [154, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [206, 7, 13, "Do not use any type assertions.", "268797995"], - [206, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [209, 28, 13, "Do not use any type assertions.", "268797995"], - [209, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [214, 7, 13, "Do not use any type assertions.", "268797995"], - [214, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [214, 46, 13, "Do not use any type assertions.", "268797995"], - [214, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [217, 19, 13, "Do not use any type assertions.", "268797995"], - [217, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [218, 23, 13, "Do not use any type assertions.", "268797995"], - [218, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [220, 17, 13, "Do not use any type assertions.", "268797995"], - [220, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [221, 20, 13, "Do not use any type assertions.", "268797995"], - [221, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/ColorScale/ColorScale.tsx:661627953": [ - [38, 24, 43, "Do not use any type assertions.", "1727107527"], - [38, 25, 19, "Do not use any type assertions.", "1979047218"], - [38, 41, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/DynamicImports/SafeDynamicImport.test.tsx:1935119405": [ - [11, 52, 25, "Do not use any type assertions.", "843018445"], - [11, 52, 16, "Do not use any type assertions.", "1946418535"], - [31, 52, 25, "Do not use any type assertions.", "843018445"], - [31, 52, 16, "Do not use any type assertions.", "1946418535"] - ], - "public/app/core/components/DynamicImports/SafeDynamicImport.tsx:389770024": [ - [22, 56, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/Layers/LayerDragDropList.tsx:3897973223": [ - [15, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/Layers/LayerName.test.tsx:1735094192": [ - [14, 12, 30, "Do not use any type assertions.", "387902886"], - [14, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/Layers/LayerName.tsx:2403944277": [ - [59, 21, 19, "Do not use any type assertions.", "1979047218"], - [59, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/Login/LoginCtrl.tsx:3241763794": [ - [42, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/Login/LoginPage.test.tsx:1437148752": [ - [88, 5, 18, "Do not use any type assertions.", "252710807"], - [88, 20, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/Login/LoginServiceButtons.tsx:1939846488": [ - [65, 13, 36, "Do not use any type assertions.", "4066074242"], - [71, 13, 45, "Do not use any type assertions.", "2905055610"] - ], - "public/app/core/components/NavBar/NavBarItem.test.tsx:2660212410": [ - [42, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/NavBar/NavBarItem.tsx:15110776": [ - [80, 64, 21, "Do not use any type assertions.", "2327357803"] - ], - "public/app/core/components/NavBar/NavBarItemMenuTrigger.tsx:4294761498": [ - [94, 35, 21, "Do not use any type assertions.", "2327357803"], - [105, 11, 41, "Do not use any type assertions.", "2551905306"], - [120, 15, 41, "Do not use any type assertions.", "1904113237"], - [137, 15, 41, "Do not use any type assertions.", "1904113237"] - ], - "public/app/core/components/NavBar/NavBarMenu.tsx:2095049018": [ - [241, 54, 26, "Do not use any type assertions.", "1541386804"], - [445, 23, 21, "Do not use any type assertions.", "1121249950"] - ], - "public/app/core/components/PageHeader/PageHeader.test.tsx:3755271251": [ - [19, 32, 10, "Do not use any type assertions.", "883420344"], - [19, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 32, 10, "Do not use any type assertions.", "883420344"], - [39, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/PageHeader/PageHeader.tsx:952684291": [ - [65, 22, 22, "Do not use any type assertions.", "4054086100"], - [104, 34, 21, "Do not use any type assertions.", "2401004021"] - ], - "public/app/core/components/PanelTypeFilter/PanelTypeFilter.tsx:1614517181": [ - [41, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/PermissionList/DisabledPermissionListItem.tsx:3510852504": [ - [6, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 73, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/PermissionList/PermissionList.tsx:3364281297": [ - [11, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/QueryOperationRow/QueryOperationRow.test.tsx:3743889097": [ - [86, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [126, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/RolePicker/RolePickerMenu.tsx:2487377936": [ - [389, 107, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/Select/FolderPicker.test.tsx:2842007924": [ - [16, 8, 48, "Do not use any type assertions.", "824171569"], - [17, 8, 48, "Do not use any type assertions.", "335398257"], - [28, 8, 48, "Do not use any type assertions.", "824171569"], - [29, 8, 48, "Do not use any type assertions.", "335398257"], - [30, 8, 48, "Do not use any type assertions.", "1707625265"] - ], - "public/app/core/components/Select/FolderPicker.tsx:3690374434": [ - [20, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/Select/MetricSelect.test.tsx:3351544014": [ - [14, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/Select/ReadonlyFolderPicker/api.test.ts:1703403489": [ - [33, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [73, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/Select/SortPicker.tsx:3288691532": [ - [20, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/Select/TeamPicker.tsx:3936188059": [ - [18, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/Select/UserPicker.tsx:3251183248": [ - [19, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/SharedPreferences/SharedPreferences.tsx:1974319039": [ - [65, 12, 29, "Do not use any type assertions.", "3057120496"] - ], - "public/app/core/components/TagFilter/TagBadge.tsx:775575408": [ - [8, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 53, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/TagFilter/TagFilter.tsx:2477083789": [ - [35, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [109, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [132, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [133, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [144, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [147, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [156, 44, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/TagFilter/TagOption.tsx:108355790": [ - [10, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 8, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/TagFilter/TagValue.tsx:778549425": [ - [5, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 53, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/connectWithCleanUp.tsx:1482653004": [ - [19, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 11, 40, "Do not use any type assertions.", "28234765"] - ], - "public/app/core/components/editors/DashboardPicker.tsx:3166151962": [ - [11, 85, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/editors/DashboardPickerByID.tsx:2553829073": [ - [84, 73, 19, "Do not use any type assertions.", "2753578751"] - ], - "public/app/core/components/editors/registry.tsx:1995760520": [ - [27, 12, 22, "Do not use any type assertions.", "1992359587"], - [27, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 12, 26, "Do not use any type assertions.", "3129991732"], - [34, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 12, 28, "Do not use any type assertions.", "533058095"], - [41, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [57, 12, 53, "Do not use any type assertions.", "2091146356"], - [57, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 14, 53, "Do not use any type assertions.", "2091146356"], - [58, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 12, 55, "Do not use any type assertions.", "1047856143"], - [71, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 14, 55, "Do not use any type assertions.", "1047856143"], - [72, 66, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/components/modals/AngularModalProxy.tsx:1420708615": [ - [9, 61, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/history/RichHistoryRemoteStorage.test.ts:840234063": [ - [56, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [122, 50, 88, "Do not use any type assertions.", "785766566"], - [137, 50, 81, "Do not use any type assertions.", "1178608001"], - [158, 56, 80, "Do not use any type assertions.", "3705676086"], - [168, 56, 82, "Do not use any type assertions.", "1473248091"] - ], - "public/app/core/history/RichHistoryRemoteStorage.ts:4107391210": [ - [83, 17, 62, "Do not use any type assertions.", "168196037"], - [133, 14, 82, "Do not use any type assertions.", "3439214800"] - ], - "public/app/core/history/richHistoryLocalStorageUtils.ts:708464706": [ - [59, 99, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/logs_model.test.ts:47944319": [ - [34, 32, 132, "Do not use any type assertions.", "3240026221"], - [41, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 32, 250, "Do not use any type assertions.", "1056401323"], - [59, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 32, 255, "Do not use any type assertions.", "3910157567"], - [90, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [108, 32, 255, "Do not use any type assertions.", "3910157567"], - [121, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [131, 32, 146, "Do not use any type assertions.", "4042945873"], - [141, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [159, 32, 245, "Do not use any type assertions.", "1219087628"], - [172, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [181, 32, 399, "Do not use any type assertions.", "951740236"], - [202, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [214, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [223, 32, 17, "Do not use any type assertions.", "3976469210"], - [1085, 32, 96, "Do not use any type assertions.", "2446954905"], - [1088, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [1096, 32, 96, "Do not use any type assertions.", "2446954905"], - [1099, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [1146, 14, 152, "Do not use any type assertions.", "1058688753"], - [1146, 14, 117, "Do not use any type assertions.", "2244099206"] - ], - "public/app/core/logs_model.ts:1903332011": [ - [113, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [114, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [461, 21, 196, "Do not use any type assertions.", "842163811"], - [462, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [462, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [466, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [610, 27, 17, "Do not use any type assertions.", "1830153619"], - [611, 30, 17, "Do not use any type assertions.", "1830153619"], - [664, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [664, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [685, 26, 68, "Do not use any type assertions.", "1746242431"] - ], - "public/app/core/mod_defs.d.ts:305963360": [ - [1, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/navigation/GrafanaRoute.test.tsx:1908227056": [ - [15, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 21, 42, "Do not use any type assertions.", "2383305890"], - [21, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 20, 9, "Do not use any type assertions.", "3692209159"], - [22, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 18, 9, "Do not use any type assertions.", "3692209159"], - [23, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 79, 35, "Do not use any type assertions.", "576717326"], - [26, 111, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/navigation/RouterDebugger.tsx:2707529529": [ - [8, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/navigation/__mocks__/routeProps.ts:3811296670": [ - [10, 14, 32, "Do not use any type assertions.", "2828713919"], - [12, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 11, 21, "Do not use any type assertions.", "370403079"], - [13, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 11, 9, "Do not use any type assertions.", "3692209159"], - [14, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 17, 9, "Do not use any type assertions.", "3692209159"], - [15, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/navigation/hooks.ts:4039237999": [ - [4, 75, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 50, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/navigation/parseKeyValue.ts:2697054423": [ - [10, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [47, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [73, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 59, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/navigation/patch/interceptLinkClicks.ts:3887330976": [ - [4, 33, 23, "Do not use any type assertions.", "465915630"], - [47, 14, 33, "Do not use any type assertions.", "847156152"] - ], - "public/app/core/navigation/queryString.ts:2438545691": [ - [0, 36, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/navigation/testRoutes.tsx:221170635": [ - [11, 6, 169, "Do not use any type assertions.", "2248693214"], - [17, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/navigation/types.ts:2017971154": [ - [10, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/profiler.ts:173788508": [ - [11, 5, 13, "Do not use any type assertions.", "538937261"], - [11, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/reducers/appNotification.ts:735507530": [ - [77, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/reducers/navModel.ts:2486277874": [ - [7, 20, 41, "Do not use any type assertions.", "680953089"] - ], - "public/app/core/reducers/processsAclItems.ts:2776156466": [ - [7, 15, 19, "Do not use any type assertions.", "2976203202"] - ], - "public/app/core/reducers/root.test.ts:657687008": [ - [10, 6, 59, "Do not use any type assertions.", "3685154675"], - [10, 6, 49, "Do not use any type assertions.", "1184085652"], - [58, 21, 17, "Do not use any type assertions.", "3052101546"], - [59, 20, 64, "Do not use any type assertions.", "2327479502"], - [80, 20, 21, "Do not use any type assertions.", "4154873866"], - [81, 32, 148, "Do not use any type assertions.", "2154524672"] - ], - "public/app/core/reducers/root.ts:2873598299": [ - [48, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 30, 30, "Do not use any type assertions.", "2185737917"], - [63, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 60, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/services/FetchQueue.ts:3303728942": [ - [37, 64, 23, "Do not use any type assertions.", "1258929971"], - [87, 7, 47, "Do not use any type assertions.", "1916216016"] - ], - "public/app/core/services/FetchQueueWorker.test.ts:2227442661": [ - [11, 36, 48, "Do not use any type assertions.", "1316887684"], - [11, 36, 27, "Do not use any type assertions.", "3283908118"], - [16, 32, 150, "Do not use any type assertions.", "2978416036"], - [16, 32, 136, "Do not use any type assertions.", "1990415195"], - [24, 43, 80, "Do not use any type assertions.", "2893045808"], - [24, 43, 63, "Do not use any type assertions.", "1219532528"] - ], - "public/app/core/services/FetchQueueWorker.ts:401754179": [ - [34, 15, 19, "Do not use any type assertions.", "1328089717"], - [42, 15, 19, "Do not use any type assertions.", "1328089717"] - ], - "public/app/core/services/ModalManager.ts:1311746136": [ - [23, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/services/PreferencesService.ts:2009646714": [ - [10, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 59, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/services/ResponseQueue.test.ts:346675060": [ - [21, 13, 26, "Do not use any type assertions.", "1486426682"], - [21, 13, 15, "Do not use any type assertions.", "363922340"], - [23, 10, 31, "Do not use any type assertions.", "3534531117"], - [23, 10, 15, "Do not use any type assertions.", "363922340"], - [25, 12, 36, "Do not use any type assertions.", "3184563220"], - [25, 12, 15, "Do not use any type assertions.", "363922340"], - [31, 32, 139, "Do not use any type assertions.", "4147663614"], - [31, 32, 125, "Do not use any type assertions.", "2303979777"] - ], - "public/app/core/services/ResponseQueue.ts:2936967588": [ - [19, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 89, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/services/__mocks__/backend_srv.ts:3660350029": [ - [30, 26, 362, "Do not use any type assertions.", "1740883132"], - [30, 26, 348, "Do not use any type assertions.", "1120300381"], - [40, 14, 35, "Do not use any type assertions.", "2398460488"] - ], - "public/app/core/services/__mocks__/search_srv.ts:3077520134": [ - [0, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [0, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/services/backend_srv.ts:724064014": [ - [79, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [149, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [227, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [281, 38, 20, "Do not use any type assertions.", "443888156"], - [281, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [352, 103, 3, "Unexpected any. Specify a different type.", "193409811"], - [388, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [392, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [392, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [396, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [400, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [404, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [408, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [412, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [423, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/services/context_srv.ts:1157446284": [ - [59, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [60, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [62, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 24, 33, "Do not use any type assertions.", "3954881471"], - [71, 54, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/services/echo/backends/analytics/ApplicationInsightsBackend.ts:2845267923": [ - [31, 22, 13, "Do not use any type assertions.", "538937261"], - [31, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 7, 13, "Do not use any type assertions.", "538937261"], - [32, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 10, 13, "Do not use any type assertions.", "538937261"], - [37, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 7, 13, "Do not use any type assertions.", "538937261"], - [42, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 7, 13, "Do not use any type assertions.", "538937261"], - [46, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/services/echo/backends/analytics/RudderstackBackend.ts:1908404545": [ - [34, 18, 13, "Do not use any type assertions.", "538937261"], - [34, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 7, 26, "Do not use any type assertions.", "2581322002"], - [51, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 5, 10, "Do not use any type assertions.", "2179368260"], - [59, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 7, 10, "Do not use any type assertions.", "2179368260"], - [64, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 10, 13, "Do not use any type assertions.", "538937261"], - [72, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 7, 13, "Do not use any type assertions.", "538937261"], - [77, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 7, 13, "Do not use any type assertions.", "538937261"], - [81, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 7, 13, "Do not use any type assertions.", "538937261"], - [85, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/services/echo/backends/sentry/SentryBackend.test.ts:2149250245": [ - [50, 12, 39, "Do not use any type assertions.", "368773252"], - [61, 12, 48, "Do not use any type assertions.", "458305288"], - [90, 15, 40, "Do not use any type assertions.", "3107351661"], - [90, 15, 25, "Do not use any type assertions.", "696812916"], - [91, 12, 25, "Do not use any type assertions.", "1641015447"], - [91, 12, 13, "Do not use any type assertions.", "2146830713"], - [105, 5, 23, "Do not use any type assertions.", "1510646278"], - [106, 5, 26, "Do not use any type assertions.", "3732895375"], - [108, 31, 27, "Do not use any type assertions.", "4052461134"], - [137, 12, 49, "Do not use any type assertions.", "172348187"], - [137, 23, 22, "Do not use any type assertions.", "2578122560"] - ], - "public/app/core/services/echo/backends/sentry/transports/CustomEndpointTransport.test.ts:3567250776": [ - [35, 31, 27, "Do not use any type assertions.", "4052461134"], - [45, 22, 22, "Do not use any type assertions.", "2578122560"], - [52, 32, 152, "Do not use any type assertions.", "2212061968"], - [55, 15, 80, "Do not use any type assertions.", "1862793679"], - [55, 15, 69, "Do not use any type assertions.", "3880603697"], - [57, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 78, 27, "Do not use any type assertions.", "4052461134"], - [77, 32, 152, "Do not use any type assertions.", "2212061968"], - [80, 15, 80, "Do not use any type assertions.", "1862793679"], - [80, 15, 69, "Do not use any type assertions.", "3880603697"], - [82, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [84, 78, 27, "Do not use any type assertions.", "4052461134"] - ], - "public/app/core/services/echo/backends/sentry/transports/CustomEndpointTransport.ts:3119943336": [ - [86, 22, 60, "Do not use any type assertions.", "3125791610"] - ], - "public/app/core/services/echo/backends/sentry/transports/EchoSrvTransport.ts:2419279981": [ - [12, 37, 24, "Do not use any type assertions.", "3236983340"] - ], - "public/app/core/services/keybindingSrv.ts:1855124897": [ - [52, 19, 15, "Do not use any type assertions.", "1605439246"], - [52, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [146, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [159, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/services/search_srv.ts:1940811612": [ - [16, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 13, 153, "Do not use any type assertions.", "3055602986"], - [44, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 9, 15, "Do not use any type assertions.", "4195655835"], - [51, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [100, 81, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/services/withFocusedPanelId.ts:1347414526": [ - [5, 22, 37, "Do not use any type assertions.", "3344232204"], - [5, 22, 22, "Do not use any type assertions.", "1380158461"] - ], - "public/app/core/specs/OrgSwitcher.test.tsx:3282541144": [ - [35, 22, 14, "Do not use any type assertions.", "2904900588"] - ], - "public/app/core/specs/backend_srv.test.ts:3174452539": [ - [39, 42, 77, "Do not use any type assertions.", "88741020"], - [39, 42, 57, "Do not use any type assertions.", "2071076705"], - [42, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 21, 78, "Do not use any type assertions.", "2678834606"], - [44, 21, 70, "Do not use any type assertions.", "180439533"], - [47, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 37, 36, "Do not use any type assertions.", "2064057472"], - [48, 37, 22, "Do not use any type assertions.", "1546332218"], - [50, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [105, 35, 118, "Do not use any type assertions.", "1884614472"], - [111, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [260, 12, 75, "Do not use any type assertions.", "2728058581"], - [263, 12, 188, "Do not use any type assertions.", "2297100623"], - [379, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [417, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [538, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [565, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [603, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/specs/flatten.test.ts:3278783007": [ - [14, 6, 66, "Do not use any type assertions.", "3915217992"], - [14, 6, 15, "Do not use any type assertions.", "363922340"], - [14, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 67, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/specs/search_srv.test.ts:2127076917": [ - [35, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [115, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [148, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [198, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/specs/table_model.test.ts:1590805525": [ - [186, 4, 132, "Do not use any type assertions.", "3861720105"], - [186, 4, 118, "Do not use any type assertions.", "982577386"], - [192, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/specs/ticks.test.ts:2709254772": [ - [4, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/specs/time_series.test.ts:993580521": [ - [3, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [240, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [260, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [392, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [407, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [407, 28, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/store.ts:2771502817": [ - [34, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/table_model.ts:3686225236": [ - [17, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [109, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [121, 5, 21, "Do not use any type assertions.", "1861934631"], - [140, 5, 23, "Do not use any type assertions.", "422252161"], - [143, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [173, 5, 23, "Do not use any type assertions.", "422252161"] - ], - "public/app/core/time_series2.ts:4119547856": [ - [37, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [62, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [73, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [82, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [84, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [86, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [87, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [88, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [89, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [90, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [91, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [94, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [96, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [113, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [347, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/utils/ConfigProvider.tsx:2820383772": [ - [11, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 31, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/utils/acl.ts:2776156466": [ - [7, 15, 19, "Do not use any type assertions.", "2976203202"] - ], - "public/app/core/utils/connectWithReduxStore.tsx:2164362703": [ - [5, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 37, 14, "Do not use any type assertions.", "1209999167"], - [6, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 37, 14, "Do not use any type assertions.", "1209999167"], - [15, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/utils/css_loader.ts:1346039745": [ - [32, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 34, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/utils/dag.ts:2397615001": [ - [103, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [120, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/utils/deferred.ts:1029636448": [ - [0, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [2, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/utils/errors.test.ts:2986043048": [ - [17, 36, 36, "Do not use any type assertions.", "3147162709"], - [27, 36, 44, "Do not use any type assertions.", "178178135"], - [27, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 36, 37, "Do not use any type assertions.", "69818585"], - [37, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [47, 36, 38, "Do not use any type assertions.", "1940070779"], - [47, 71, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/utils/errors.ts:4093148695": [ - [2, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 9, 13, "Do not use any type assertions.", "358992263"] - ], - "public/app/core/utils/explore.test.ts:3206064808": [ - [176, 15, 369, "Do not use any type assertions.", "3674902995"], - [176, 15, 343, "Do not use any type assertions.", "1397473381"], - [237, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [273, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [330, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [366, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/utils/explore.ts:1226365206": [ - [143, 13, 14, "Do not use any type assertions.", "1862451098"], - [143, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [177, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [189, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [220, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [302, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [414, 42, 15, "Do not use any type assertions.", "2415286282"], - [414, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [415, 37, 15, "Do not use any type assertions.", "2415286282"], - [415, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [420, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [420, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [441, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/utils/fetch.test.ts:3489769741": [ - [12, 6, 56, "Do not use any type assertions.", "1444712415"], - [12, 6, 46, "Do not use any type assertions.", "2853347960"] - ], - "public/app/core/utils/fetch.ts:2571467564": [ - [102, 15, 29, "Do not use any type assertions.", "4028549396"], - [102, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [105, 15, 22, "Do not use any type assertions.", "1188875502"], - [105, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [112, 17, 18, "Do not use any type assertions.", "76882239"], - [112, 17, 13, "Do not use any type assertions.", "2146830713"], - [118, 15, 22, "Do not use any type assertions.", "2218120720"], - [118, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [126, 9, 15, "Do not use any type assertions.", "2019854188"], - [126, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [129, 53, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/utils/flatten.ts:3855760068": [ - [3, 69, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 85, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 97, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 105, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/utils/kbn.ts:3042656772": [ - [14, 16, 25, "Do not use any type assertions.", "3275951780"], - [16, 22, 147, "Do not use any type assertions.", "459363279"] - ], - "public/app/core/utils/model_utils.ts:2177256208": [ - [0, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [0, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [0, 74, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/utils/object.ts:2429500203": [ - [5, 11, 54, "Do not use any type assertions.", "3485248673"], - [5, 11, 49, "Do not use any type assertions.", "2284798119"], - [10, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 19, 12, "Do not use any type assertions.", "4064292234"], - [11, 28, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/utils/query.ts:1708560150": [ - [20, 22, 14, "Do not use any type assertions.", "2876063356"] - ], - "public/app/core/utils/richHistory.test.ts:1015601936": [ - [20, 51, 24, "Do not use any type assertions.", "355258266"], - [62, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/utils/richHistory.ts:819475094": [ - [238, 31, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/utils/ticks.ts:1452198337": [ - [73, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [73, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [121, 83, 3, "Unexpected any. Specify a different type.", "193409811"], - [121, 93, 3, "Unexpected any. Specify a different type.", "193409811"], - [203, 12, 24, "Do not use any type assertions.", "876193368"], - [203, 12, 14, "Do not use any type assertions.", "765349097"] - ], - "public/app/core/utils/timePicker.test.ts:1500146069": [ - [4, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/core/utils/tracing.ts:1287710685": [ - [25, 11, 66, "Do not use any type assertions.", "686041448"], - [26, 5, 29, "Do not use any type assertions.", "2635161824"], - [67, 9, 60, "Do not use any type assertions.", "738572730"] - ], - "public/app/features/admin/AdminListOrgsPage.tsx:1232501301": [ - [22, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/admin/AdminSettings.tsx:876474391": [ - [18, 10, 63, "Do not use any type assertions.", "1950730127"] - ], - "public/app/features/admin/OrgRolePicker.tsx:1136634836": [ - [22, 34, 20, "Do not use any type assertions.", "3568020359"] - ], - "public/app/features/admin/UserListAdminPage.tsx:3454473979": [ - [27, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/admin/UserProfile.tsx:2121737967": [ - [205, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [302, 10, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/admin/ldap/LdapPage.tsx:1724804732": [ - [73, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/admin/state/reducers.test.ts:3463255684": [ - [82, 23, 25, "Do not use any type assertions.", "71482403"], - [82, 23, 15, "Do not use any type assertions.", "363922340"], - [93, 23, 25, "Do not use any type assertions.", "71482403"], - [93, 23, 15, "Do not use any type assertions.", "363922340"] - ], - "public/app/features/alerting/AlertRuleItem.tsx:1780097293": [ - [32, 30, 26, "Do not use any type assertions.", "3941707047"] - ], - "public/app/features/alerting/AlertRuleList.test.tsx:2998938420": [ - [23, 14, 14, "Do not use any type assertions.", "3112983303"], - [24, 16, 17, "Do not use any type assertions.", "423061495"], - [38, 14, 46, "Do not use any type assertions.", "1052087204"], - [57, 34, 39, "Do not use any type assertions.", "935682756"], - [57, 70, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/AlertRuleList.tsx:474918126": [ - [134, 24, 17, "Do not use any type assertions.", "2518695225"], - [137, 58, 17, "Do not use any type assertions.", "2518695225"] - ], - "public/app/features/alerting/AlertTab.tsx:133369117": [ - [125, 11, 144, "Do not use any type assertions.", "1590379370"], - [131, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [222, 18, 18, "Do not use any type assertions.", "2867831964"] - ], - "public/app/features/alerting/AlertTabCtrl.test.ts:1975364822": [ - [18, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/AlertTabCtrl.ts:1089099622": [ - [22, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [86, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [99, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [138, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [145, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [170, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [173, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [174, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [219, 6, 14, "Do not use any type assertions.", "3854427458"], - [227, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [295, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [313, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [365, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [366, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [376, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [376, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [402, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [402, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [468, 34, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/EditNotificationChannelPage.tsx:3397946803": [ - [21, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/StateHistory.tsx:3418297987": [ - [17, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/TestRuleResult.test.tsx:2358420489": [ - [28, 30, 36, "Do not use any type assertions.", "702850259"] - ], - "public/app/features/alerting/TestRuleResult.tsx:2136823620": [ - [27, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [52, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/components/NotificationChannelOptions.tsx:721068817": [ - [35, 11, 81, "Do not use any type assertions.", "2141580503"] - ], - "public/app/features/alerting/components/OptionElement.tsx:200380057": [ - [6, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/getAlertingValidationMessage.test.ts:507085141": [ - [17, 40, 300, "Do not use any type assertions.", "3008011586"], - [17, 40, 283, "Do not use any type assertions.", "709776261"], - [18, 14, 39, "Do not use any type assertions.", "576049123"], - [18, 14, 25, "Do not use any type assertions.", "1824260069"], - [18, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 29, 17, "Do not use any type assertions.", "192014884"], - [37, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 48, 169, "Do not use any type assertions.", "2571237908"], - [58, 48, 152, "Do not use any type assertions.", "3172703379"], - [59, 14, 39, "Do not use any type assertions.", "576049123"], - [59, 14, 25, "Do not use any type assertions.", "1824260069"], - [59, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [62, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 40, 162, "Do not use any type assertions.", "1688500113"], - [63, 40, 145, "Do not use any type assertions.", "4001915510"], - [64, 14, 40, "Do not use any type assertions.", "3235332808"], - [64, 14, 26, "Do not use any type assertions.", "1833124430"], - [64, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 29, 17, "Do not use any type assertions.", "192014884"], - [77, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [83, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [99, 40, 159, "Do not use any type assertions.", "3866293935"], - [99, 40, 142, "Do not use any type assertions.", "2710769736"], - [100, 14, 39, "Do not use any type assertions.", "576049123"], - [100, 14, 25, "Do not use any type assertions.", "1824260069"], - [100, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [103, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [109, 29, 17, "Do not use any type assertions.", "192014884"], - [109, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [133, 40, 183, "Do not use any type assertions.", "3133664063"], - [133, 40, 166, "Do not use any type assertions.", "3300801240"], - [134, 14, 40, "Do not use any type assertions.", "3235332808"], - [134, 14, 26, "Do not use any type assertions.", "1833124430"], - [134, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [138, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [144, 29, 17, "Do not use any type assertions.", "192014884"], - [144, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [168, 40, 160, "Do not use any type assertions.", "246368708"], - [168, 40, 143, "Do not use any type assertions.", "2034527683"], - [169, 14, 39, "Do not use any type assertions.", "576049123"], - [169, 14, 25, "Do not use any type assertions.", "1824260069"], - [169, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [172, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [178, 29, 17, "Do not use any type assertions.", "192014884"], - [178, 43, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/getAlertingValidationMessage.ts:238429573": [ - [6, 34, 11, "Do not use any type assertions.", "1435517025"], - [6, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 35, 15, "Do not use any type assertions.", "1368793082"], - [7, 45, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/state/ThresholdMapper.test.ts:3045702924": [ - [10, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [57, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [122, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/state/ThresholdMapper.ts:2147305246": [ - [17, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/state/actions.ts:451966980": [ - [23, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 46, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/state/alertDef.ts:1683373860": [ - [78, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [165, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [180, 4, 14, "Do not use any type assertions.", "3854427458"], - [184, 36, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/state/query_part.ts:2255335987": [ - [4, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [84, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/state/reducers.ts:199504985": [ - [84, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [130, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/state/selectors.test.ts:729037839": [ - [5, 34, 12, "Do not use any type assertions.", "569450646"], - [5, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 37, 12, "Do not use any type assertions.", "569450646"], - [33, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [94, 37, 12, "Do not use any type assertions.", "569450646"], - [94, 46, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/unified/AlertsFolderView.test.tsx:3118056723": [ - [25, 63, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/unified/AmRoutes.test.tsx:1159153232": [ - [199, 21, 16, "Do not use any type assertions.", "2939667099"], - [199, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [378, 8, 29, "Do not use any type assertions.", "2249960884"] - ], - "public/app/features/alerting/unified/AmRoutes.tsx:1547549324": [ - [55, 20, 124, "Do not use any type assertions.", "1859971542"] - ], - "public/app/features/alerting/unified/PanelAlertTabContent.test.tsx:2750168837": [ - [148, 18, 168, "Do not use any type assertions.", "3635996173"], - [186, 56, 87, "Do not use any type assertions.", "3591252716"], - [188, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [188, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [189, 53, 90, "Do not use any type assertions.", "3360422103"], - [190, 6, 3, "Unexpected any. Specify a different type.", "193409811"], - [191, 6, 3, "Unexpected any. Specify a different type.", "193409811"], - [257, 5, 46, "Do not use any type assertions.", "3849301614"], - [257, 5, 25, "Do not use any type assertions.", "2832141036"], - [257, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/unified/Receivers.test.tsx:3742116867": [ - [143, 34, 29, "Do not use any type assertions.", "2249960884"] - ], - "public/app/features/alerting/unified/RedirectToRuleViewer.test.tsx:745443770": [ - [19, 6, 45, "Do not use any type assertions.", "65849321"], - [19, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 10, 16, "Do not use any type assertions.", "1747412709"], - [41, 14, 24, "Do not use any type assertions.", "3254438164"], - [84, 14, 124, "Do not use any type assertions.", "3567701441"], - [98, 14, 16, "Do not use any type assertions.", "1747412709"], - [99, 18, 24, "Do not use any type assertions.", "3254438164"], - [113, 14, 124, "Do not use any type assertions.", "3567701441"], - [127, 14, 16, "Do not use any type assertions.", "1747412709"], - [128, 18, 24, "Do not use any type assertions.", "3254438164"] - ], - "public/app/features/alerting/unified/RuleEditor.test.tsx:3247797279": [ - [231, 42, 149, "Do not use any type assertions.", "2017267554"], - [418, 23, 50, "Do not use any type assertions.", "772738025"], - [418, 23, 36, "Do not use any type assertions.", "4069427080"], - [420, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [452, 42, 32, "Do not use any type assertions.", "2259972478"], - [505, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [640, 42, 20, "Do not use any type assertions.", "1750699644"] - ], - "public/app/features/alerting/unified/RuleList.test.tsx:629893124": [ - [125, 21, 16, "Do not use any type assertions.", "2939667099"], - [125, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [179, 30, 59, "Do not use any type assertions.", "2074025380"] - ], - "public/app/features/alerting/unified/RuleList.tsx:744290076": [ - [44, 23, 41, "Do not use any type assertions.", "1149277051"], - [45, 9, 41, "Do not use any type assertions.", "1149277051"] - ], - "public/app/features/alerting/unified/RuleViewer.test.tsx:1065611706": [ - [18, 6, 45, "Do not use any type assertions.", "1051848938"], - [18, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [49, 14, 31, "Do not use any type assertions.", "3233002852"], - [63, 14, 29, "Do not use any type assertions.", "1248689289"], - [129, 12, 16, "Do not use any type assertions.", "1747412709"], - [130, 16, 24, "Do not use any type assertions.", "3254438164"] - ], - "public/app/features/alerting/unified/Silences.test.tsx:1255403007": [ - [108, 32, 29, "Do not use any type assertions.", "2249960884"], - [195, 34, 29, "Do not use any type assertions.", "2249960884"] - ], - "public/app/features/alerting/unified/api/alertmanager.ts:3027317383": [ - [205, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [210, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/unified/api/annotations.test.ts:2579323536": [ - [32, 10, 52, "Do not use any type assertions.", "3449840057"], - [33, 10, 52, "Do not use any type assertions.", "3512032697"], - [34, 10, 52, "Do not use any type assertions.", "3809885851"], - [35, 10, 42, "Do not use any type assertions.", "3760318175"], - [49, 10, 52, "Do not use any type assertions.", "3449840057"], - [50, 10, 52, "Do not use any type assertions.", "865105467"], - [51, 10, 52, "Do not use any type assertions.", "2729874170"], - [52, 10, 52, "Do not use any type assertions.", "3718693118"] - ], - "public/app/features/alerting/unified/api/buildInfo.ts:1531223511": [ - [141, 50, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/unified/api/ruler.ts:3998315487": [ - [157, 27, 44, "Do not use any type assertions.", "720973826"], - [158, 40, 44, "Do not use any type assertions.", "720973826"] - ], - "public/app/features/alerting/unified/components/AnnotationDetailsField.tsx:1101887836": [ - [19, 33, 27, "Do not use any type assertions.", "1321813536"], - [21, 30, 27, "Do not use any type assertions.", "1321813536"] - ], - "public/app/features/alerting/unified/components/Expression.tsx:2035202716": [ - [25, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 14, 29, "Do not use any type assertions.", "115491437"] - ], - "public/app/features/alerting/unified/components/alert-groups/AlertGroupFilter.tsx:1902308592": [ - [63, 23, 24, "Do not use any type assertions.", "970310167"] - ], - "public/app/features/alerting/unified/components/alert-groups/AlertGroupHeader.tsx:816505178": [ - [22, 5, 32, "Do not use any type assertions.", "3614655240"], - [31, 34, 19, "Do not use any type assertions.", "1199723577"] - ], - "public/app/features/alerting/unified/components/alert-groups/GroupBy.tsx:3437085082": [ - [31, 52, 15, "Do not use any type assertions.", "3446303945"] - ], - "public/app/features/alerting/unified/components/alert-groups/MatcherFilter.tsx:1719836622": [ - [17, 19, 28, "Do not use any type assertions.", "1547636696"] - ], - "public/app/features/alerting/unified/components/amroutes/AmRoutesTable.tsx:3093815801": [ - [126, 10, 1271, "Do not use any type assertions.", "441563991"] - ], - "public/app/features/alerting/unified/components/receivers/TemplateForm.tsx:3914144192": [ - [99, 29, 12, "Do not use any type assertions.", "3304544793"], - [99, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/unified/components/receivers/form/ChannelOptions.tsx:2192936556": [ - [31, 28, 30, "Do not use any type assertions.", "1841535999"], - [31, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [62, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 10, 99, "Do not use any type assertions.", "559050962"], - [63, 81, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/unified/components/receivers/form/ReceiverForm.tsx:2228184387": [ - [49, 6, 77, "Do not use any type assertions.", "3385432378"], - [52, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [142, 22, 40, "Do not use any type assertions.", "1065114619"], - [154, 36, 52, "Do not use any type assertions.", "2819173880"] - ], - "public/app/features/alerting/unified/components/receivers/form/TestContactPointModal.tsx:714545883": [ - [52, 13, 17, "Do not use any type assertions.", "3803088261"], - [57, 13, 12, "Do not use any type assertions.", "96869412"] - ], - "public/app/features/alerting/unified/components/receivers/form/fields/OptionField.tsx:864987982": [ - [14, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 16, 45, "Do not use any type assertions.", "61204707"], - [40, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [52, 16, 52, "Do not use any type assertions.", "1155459448"], - [52, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [188, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [201, 73, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/unified/components/receivers/form/fields/SubformArrayField.tsx:3029572308": [ - [14, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/unified/components/receivers/form/fields/SubformField.tsx:197413429": [ - [12, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/unified/components/rule-editor/AlertRuleForm.tsx:2431893523": [ - [38, 28, 45, "Do not use any type assertions.", "3729724581"], - [48, 47, 33, "Do not use any type assertions.", "3391853962"] - ], - "public/app/features/alerting/unified/components/rule-editor/AnnotationKeyInput.tsx:3576317786": [ - [32, 27, 37, "Do not use any type assertions.", "365254657"] - ], - "public/app/features/alerting/unified/components/rule-editor/AnnotationsField.tsx:3695841548": [ - [19, 22, 53, "Do not use any type assertions.", "1283946649"] - ], - "public/app/features/alerting/unified/components/rule-editor/ConditionField.test.tsx:3255434476": [ - [17, 25, 255, "Do not use any type assertions.", "445528897"] - ], - "public/app/features/alerting/unified/components/rule-editor/ExpressionEditor.tsx:795899287": [ - [70, 45, 30, "Do not use any type assertions.", "392037280"] - ], - "public/app/features/alerting/unified/components/rule-editor/PreviewRule.tsx:2454358037": [ - [72, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/unified/components/rule-editor/RuleInspector.tsx:3727382711": [ - [80, 13, 39, "Do not use any type assertions.", "3554062907"] - ], - "public/app/features/alerting/unified/components/rule-editor/SelectWIthAdd.tsx:1075526461": [ - [55, 35, 28, "Do not use any type assertions.", "1547636696"] - ], - "public/app/features/alerting/unified/components/rule-editor/query-and-alert-condition/AlertType.test.tsx:2143187355": [ - [41, 10, 29, "Do not use any type assertions.", "2249960884"], - [54, 72, 29, "Do not use any type assertions.", "2249960884"], - [66, 65, 29, "Do not use any type assertions.", "2249960884"] - ], - "public/app/features/alerting/unified/components/rule-editor/util.test.ts:115971189": [ - [101, 25, 42, "Do not use any type assertions.", "3490778927"], - [114, 25, 42, "Do not use any type assertions.", "3490778927"], - [123, 25, 42, "Do not use any type assertions.", "3490778927"], - [131, 25, 42, "Do not use any type assertions.", "3490778927"], - [139, 13, 42, "Do not use any type assertions.", "3490778927"], - [140, 13, 42, "Do not use any type assertions.", "3394454764"] - ], - "public/app/features/alerting/unified/components/rules/RuleDetailsActionButtons.tsx:3829171323": [ - [289, 10, 27, "Do not use any type assertions.", "1001474856"] - ], - "public/app/features/alerting/unified/components/rules/RuleDetailsDataSources.tsx:2229011417": [ - [38, 9, 53, "Do not use any type assertions.", "148626441"] - ], - "public/app/features/alerting/unified/components/rules/RulesFilter.tsx:782876774": [ - [67, 19, 28, "Do not use any type assertions.", "1547636696"], - [147, 21, 24, "Do not use any type assertions.", "3685648343"] - ], - "public/app/features/alerting/unified/components/rules/RulesGroup.test.tsx:1866132512": [ - [14, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/unified/components/silences/SilencesEditor.tsx:1481048460": [ - [115, 20, 179, "Do not use any type assertions.", "1638196344"] - ], - "public/app/features/alerting/unified/components/silences/SilencesFilter.tsx:824031372": [ - [27, 19, 28, "Do not use any type assertions.", "1547636696"] - ], - "public/app/features/alerting/unified/hooks/useCombinedRuleNamespaces.test.ts:3536006768": [ - [7, 28, 87, "Do not use any type assertions.", "3058961128"], - [12, 28, 97, "Do not use any type assertions.", "4219061192"], - [18, 19, 105, "Do not use any type assertions.", "3168271890"], - [23, 19, 105, "Do not use any type assertions.", "1620836241"], - [40, 18, 51, "Do not use any type assertions.", "107010128"] - ], - "public/app/features/alerting/unified/hooks/useControlledFieldArray.ts:1798110841": [ - [6, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/unified/hooks/useFilteredRules.ts:1012076070": [ - [24, 41, 29, "Do not use any type assertions.", "4151673119"], - [31, 66, 25, "Do not use any type assertions.", "207968387"] - ], - "public/app/features/alerting/unified/hooks/useGroupedAlerts.ts:2070738631": [ - [24, 11, 25, "Do not use any type assertions.", "4119455957"], - [43, 13, 12, "Do not use any type assertions.", "96869412"], - [64, 7, 25, "Do not use any type assertions.", "4119455957"] - ], - "public/app/features/alerting/unified/hooks/useIsRuleEditable.test.tsx:4024141754": [ - [150, 64, 29, "Do not use any type assertions.", "2249960884"] - ], - "public/app/features/alerting/unified/mocks.ts:2719319751": [ - [48, 14, 7, "Do not use any type assertions.", "3399135973"], - [49, 10, 252, "Do not use any type assertions.", "102236519"], - [49, 10, 228, "Do not use any type assertions.", "3502281036"], - [57, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [95, 17, 9, "Do not use any type assertions.", "3692209159"], - [95, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [242, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [284, 7, 74, "Do not use any type assertions.", "1528953437"], - [284, 7, 44, "Do not use any type assertions.", "934113774"], - [288, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [288, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [480, 57, 29, "Do not use any type assertions.", "2249960884"] - ], - "public/app/features/alerting/unified/state/AlertingQueryRunner.test.ts:838848248": [ - [219, 9, 81, "Do not use any type assertions.", "1125692145"], - [219, 9, 67, "Do not use any type assertions.", "4033275024"], - [226, 9, 78, "Do not use any type assertions.", "3342662942"], - [226, 9, 61, "Do not use any type assertions.", "291326006"], - [234, 6, 172, "Do not use any type assertions.", "1154786841"], - [242, 6, 177, "Do not use any type assertions.", "3855113404"] - ], - "public/app/features/alerting/unified/state/actions.ts:2777522050": [ - [73, 23, 24, "Do not use any type assertions.", "3178482079"], - [252, 70, 24, "Do not use any type assertions.", "3178482079"], - [569, 60, 22, "Do not use any type assertions.", "3527197253"], - [569, 79, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/unified/types/receiver-form.ts:3566246555": [ - [10, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/unified/utils/amroutes.ts:1733555283": [ - [28, 4, 25, "Do not use any type assertions.", "2565039386"], - [106, 22, 82, "Do not use any type assertions.", "713417051"] - ], - "public/app/features/alerting/unified/utils/datasource.ts:2753515890": [ - [133, 5, 69, "Do not use any type assertions.", "2540015575"] - ], - "public/app/features/alerting/unified/utils/misc.test.ts:962758579": [ - [19, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 31, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/unified/utils/query.test.ts:4173083967": [ - [55, 16, 16, "Do not use any type assertions.", "1747412709"], - [56, 20, 24, "Do not use any type assertions.", "3254438164"] - ], - "public/app/features/alerting/unified/utils/receiver-form.ts:3286695039": [ - [53, 6, 49, "Do not use any type assertions.", "1939957483"], - [54, 6, 31, "Do not use any type assertions.", "3501399120"], - [107, 7, 29, "Do not use any type assertions.", "3243176979"], - [193, 10, 28, "Do not use any type assertions.", "2779715230"], - [245, 16, 10, "Do not use any type assertions.", "1579919174"], - [245, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/alerting/unified/utils/redux.ts:3218947324": [ - [28, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [74, 18, 48, "Do not use any type assertions.", "4184003583"], - [78, 47, 42, "Do not use any type assertions.", "2319175372"], - [78, 47, 17, "Do not use any type assertions.", "2386071297"], - [95, 18, 29, "Do not use any type assertions.", "1259940188"], - [100, 30, 42, "Do not use any type assertions.", "2319175372"], - [100, 30, 17, "Do not use any type assertions.", "2386071297"], - [158, 10, 10, "Do not use any type assertions.", "2289501258"] - ], - "public/app/features/alerting/unified/utils/rulerClient.ts:4049234446": [ - [185, 48, 30, "Do not use any type assertions.", "1488340788"], - [222, 14, 30, "Do not use any type assertions.", "1488340788"] - ], - "public/app/features/alerting/unified/utils/rules.ts:3714803402": [ - [57, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [95, 41, 19, "Do not use any type assertions.", "1199723577"], - [96, 10, 19, "Do not use any type assertions.", "1199723577"], - [98, 40, 60, "Do not use any type assertions.", "2962608616"], - [127, 36, 42, "Do not use any type assertions.", "3314504643"], - [135, 5, 19, "Do not use any type assertions.", "5040063"] - ], - "public/app/features/alerting/unified/utils/timeRange.test.ts:960501818": [ - [15, 17, 248, "Do not use any type assertions.", "1101398068"], - [32, 41, 40, "Do not use any type assertions.", "4073243510"], - [43, 17, 342, "Do not use any type assertions.", "2705074487"], - [70, 41, 40, "Do not use any type assertions.", "4073243510"], - [83, 15, 191, "Do not use any type assertions.", "676893829"], - [100, 39, 40, "Do not use any type assertions.", "4073243510"], - [108, 15, 207, "Do not use any type assertions.", "3256955732"], - [134, 34, 40, "Do not use any type assertions.", "4073243510"], - [145, 15, 214, "Do not use any type assertions.", "2540635293"], - [165, 39, 40, "Do not use any type assertions.", "4073243510"], - [178, 15, 221, "Do not use any type assertions.", "1204635877"], - [198, 39, 40, "Do not use any type assertions.", "4073243510"] - ], - "public/app/features/annotations/components/AnnotationResultMapper.tsx:1382385589": [ - [131, 41, 15, "Do not use any type assertions.", "3610795007"] - ], - "public/app/features/annotations/components/StandardAnnotationQueryEditor.tsx:1738271764": [ - [28, 10, 11, "Do not use any type assertions.", "750480870"] - ], - "public/app/features/annotations/events_processing.ts:311785085": [ - [2, 46, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/annotations/executeAnnotationQuery.ts:1287843533": [ - [18, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/annotations/standardAnnotationSupport.ts:3116399706": [ - [23, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 11, 23, "Do not use any type assertions.", "1775837378"], - [123, 9, 13, "Do not use any type assertions.", "3840621009"], - [123, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [199, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [217, 13, 11, "Do not use any type assertions.", "2583374607"], - [217, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/api-keys/ApiKeysForm.tsx:1861866041": [ - [12, 9, 15, "Do not use any type assertions.", "494416109"] - ], - "public/app/features/api-keys/ApiKeysPage.test.tsx:3659189785": [ - [31, 14, 122, "Do not use any type assertions.", "3612205034"], - [39, 13, 14, "Do not use any type assertions.", "2767045528"], - [165, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/api-keys/ApiKeysTable.tsx:4122513306": [ - [43, 36, 34, "Do not use any type assertions.", "3924286587"] - ], - "public/app/features/canvas/element.ts:3218423259": [ - [16, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 58, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/canvas/elements/droneFront.tsx:2907779369": [ - [72, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 52, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/canvas/elements/droneSide.tsx:3099027344": [ - [71, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 51, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/canvas/elements/droneTop.tsx:700800723": [ - [83, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [83, 50, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/canvas/elements/notFound.tsx:2981646897": [ - [5, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/canvas/elements/windTurbine.tsx:100490884": [ - [67, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 53, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/canvas/runtime/ables.tsx:2486234637": [ - [10, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 49, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/canvas/runtime/element.tsx:1655992663": [ - [38, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [84, 49, 15, "Do not use any type assertions.", "151603256"], - [182, 23, 10, "Do not use any type assertions.", "1501063862"], - [182, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [182, 38, 21, "Do not use any type assertions.", "1600738939"], - [182, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [186, 23, 10, "Do not use any type assertions.", "1501063862"], - [186, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [186, 38, 21, "Do not use any type assertions.", "67485134"], - [186, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [211, 22, 15, "Do not use any type assertions.", "151603256"] - ], - "public/app/features/canvas/runtime/frame.tsx:3835871966": [ - [47, 42, 23, "Do not use any type assertions.", "1788531953"], - [114, 45, 15, "Do not use any type assertions.", "151603256"] - ], - "public/app/features/canvas/runtime/root.tsx:2845174121": [ - [24, 19, 36, "Do not use any type assertions.", "1413431594"] - ], - "public/app/features/canvas/runtime/scene.tsx:2928385813": [ - [155, 61, 25, "Do not use any type assertions.", "588553285"], - [160, 42, 25, "Do not use any type assertions.", "588553285"] - ], - "public/app/features/comments/CommentView.tsx:3338885322": [ - [31, 20, 32, "Do not use any type assertions.", "3501587761"] - ], - "public/app/features/dashboard/components/AddPanelWidget/AddPanelWidget.test.tsx:3529318871": [ - [11, 14, 16, "Do not use any type assertions.", "2607709806"], - [11, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/AddPanelWidget/AddPanelWidget.tsx:3675352369": [ - [24, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 67, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 75, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 89, 3, "Unexpected any. Specify a different type.", "193409811"], - [47, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [90, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [126, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/DashExportModal/DashboardExporter.test.ts:2274633003": [ - [22, 6, 59, "Do not use any type assertions.", "3685154675"], - [22, 6, 49, "Do not use any type assertions.", "1184085652"], - [25, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [47, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [74, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [94, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [100, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [100, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [201, 29, 100, "Do not use any type assertions.", "2603231511"], - [207, 29, 100, "Do not use any type assertions.", "1574182326"], - [213, 31, 104, "Do not use any type assertions.", "3067343445"], - [240, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [245, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [272, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [280, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [285, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [290, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [297, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [304, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [311, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [318, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [325, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [334, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [370, 13, 18, "Do not use any type assertions.", "3420875325"], - [371, 9, 55, "Do not use any type assertions.", "1888720338"], - [371, 17, 10, "Do not use any type assertions.", "1501063862"], - [371, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [371, 61, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/DashExportModal/DashboardExporter.ts:568589687": [ - [17, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [65, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [82, 25, 17, "Do not use any type assertions.", "1733699692"], - [82, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [83, 20, 33, "Do not use any type assertions.", "1729190460"], - [83, 21, 17, "Do not use any type assertions.", "1733699692"], - [83, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [148, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [176, 29, 31, "Do not use any type assertions.", "1451241646"], - [176, 29, 13, "Do not use any type assertions.", "2146830713"], - [195, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/DashNav/DashNav.tsx:574528540": [ - [66, 87, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/DashNav/DashNavTimeControls.test.tsx:3825334541": [ - [49, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/DashboardPrompt/DashboardPrompt.test.tsx:3008088829": [ - [34, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 29, 33, "Do not use any type assertions.", "630620957"], - [98, 29, 15, "Do not use any type assertions.", "363922340"], - [145, 16, 12, "Do not use any type assertions.", "1619708599"], - [145, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/DashboardPrompt/DashboardPrompt.tsx:3611825383": [ - [77, 15, 51, "Do not use any type assertions.", "3757670082"], - [78, 18, 33, "Do not use any type assertions.", "1234314966"], - [167, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [189, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [198, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [206, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [206, 39, 19, "Do not use any type assertions.", "3284667245"], - [206, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [207, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [207, 40, 20, "Do not use any type assertions.", "2225958749"], - [207, 57, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/DashboardRow/DashboardRow.test.tsx:1463123173": [ - [8, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 54, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/DashboardRow/DashboardRow.tsx:2790936885": [ - [19, 69, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/DashboardSettings/AnnotationsSettings.test.tsx:1365286122": [ - [12, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/DashboardSettings/AutoRefreshIntervals.test.tsx:3538366127": [ - [35, 43, 27, "Do not use any type assertions.", "534928261"], - [35, 43, 15, "Do not use any type assertions.", "363922340"], - [100, 11, 97, "Do not use any type assertions.", "2003251453"], - [100, 11, 86, "Do not use any type assertions.", "2306986637"], - [101, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [116, 11, 97, "Do not use any type assertions.", "2003251453"], - [116, 11, 86, "Do not use any type assertions.", "2306986637"], - [117, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [132, 11, 97, "Do not use any type assertions.", "2003251453"], - [132, 11, 86, "Do not use any type assertions.", "2306986637"], - [133, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [149, 11, 97, "Do not use any type assertions.", "2003251453"], - [149, 11, 86, "Do not use any type assertions.", "2306986637"], - [150, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [164, 11, 134, "Do not use any type assertions.", "2236909939"], - [164, 11, 123, "Do not use any type assertions.", "29480259"] - ], - "public/app/features/dashboard/components/DashboardSettings/DashboardSettings.test.tsx:2247570785": [ - [20, 14, 50, "Do not use any type assertions.", "3302172944"], - [22, 5, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/DashboardSettings/DashboardSettings.tsx:1752755114": [ - [40, 53, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/DashboardSettings/GeneralSettings.test.tsx:428611755": [ - [13, 14, 50, "Do not use any type assertions.", "3302172944"], - [15, 5, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/DashboardSettings/GeneralSettings.tsx:2117359978": [ - [38, 14, 51, "Do not use any type assertions.", "4093646718"] - ], - "public/app/features/dashboard/components/DashboardSettings/VersionsSettings.test.tsx:390868385": [ - [25, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/DashboardSettings/VersionsSettings.tsx:2583363246": [ - [23, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 29, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/Inspector/PanelInspectActions.tsx:199822845": [ - [63, 19, 79, "Do not use any type assertions.", "3480786380"], - [63, 20, 13, "Do not use any type assertions.", "538937261"], - [63, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/Inspector/PanelInspector.tsx:3924447553": [ - [38, 21, 68, "Do not use any type assertions.", "1786378903"] - ], - "public/app/features/dashboard/components/Inspector/hooks.ts:915808193": [ - [65, 21, 79, "Do not use any type assertions.", "3480786380"], - [65, 22, 13, "Do not use any type assertions.", "538937261"], - [65, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/LinksSettings/LinkSettingsEdit.tsx:4133421238": [ - [7, 23, 210, "Do not use any type assertions.", "3156607381"], - [53, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/PanelEditor/AngularPanelOptions.tsx:2308358529": [ - [112, 40, 21, "Do not use any type assertions.", "1532180804"] - ], - "public/app/features/dashboard/components/PanelEditor/OptionsPaneItemDescriptor.tsx:2433453685": [ - [13, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [97, 9, 30, "Do not use any type assertions.", "3304463692"] - ], - "public/app/features/dashboard/components/PanelEditor/OptionsPaneOptions.test.tsx:834492175": [ - [26, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 6, 45, "Do not use any type assertions.", "65849321"], - [29, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 15, 9, "Do not use any type assertions.", "3692209159"], - [43, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/PanelEditor/OverrideCategoryTitle.tsx:846868175": [ - [10, 40, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/PanelEditor/PanelEditor.tsx:3184477555": [ - [187, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [193, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [457, 19, 46, "Do not use any type assertions.", "2668979675"], - [458, 22, 44, "Do not use any type assertions.", "1567702462"] - ], - "public/app/features/dashboard/components/PanelEditor/PanelEditorTabs.tsx:2006337592": [ - [54, 20, 20, "Do not use any type assertions.", "2850977225"], - [104, 14, 20, "Do not use any type assertions.", "2850977225"], - [118, 14, 20, "Do not use any type assertions.", "2850977225"] - ], - "public/app/features/dashboard/components/PanelEditor/getFieldOverrideElements.tsx:3499225155": [ - [35, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [150, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/PanelEditor/getVisualizationOptions.tsx:3157707130": [ - [85, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [130, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [154, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [154, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [157, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [198, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/PanelEditor/state/actions.test.ts:2325816191": [ - [105, 27, 48, "Do not use any type assertions.", "1495699551"], - [107, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [141, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [142, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [143, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [152, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [153, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [161, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [162, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [163, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [171, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [172, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [173, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/PanelEditor/state/selectors.test.ts:314488950": [ - [20, 41, 48, "Do not use any type assertions.", "1149044184"], - [24, 43, 49, "Do not use any type assertions.", "2553364371"], - [51, 51, 82, "Do not use any type assertions.", "1958885332"], - [62, 51, 82, "Do not use any type assertions.", "531303526"], - [80, 51, 82, "Do not use any type assertions.", "1958885332"], - [99, 51, 82, "Do not use any type assertions.", "1958885332"], - [112, 51, 82, "Do not use any type assertions.", "1958885332"] - ], - "public/app/features/dashboard/components/PanelEditor/types.ts:1741228586": [ - [57, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/PanelEditor/utils.test.ts:1570291888": [ - [10, 16, 9, "Do not use any type assertions.", "3692209159"], - [10, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 11, 9, "Do not use any type assertions.", "3692209159"], - [13, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 21, 60, "Do not use any type assertions.", "2160599529"], - [28, 21, 45, "Do not use any type assertions.", "1664654500"], - [35, 21, 59, "Do not use any type assertions.", "2262409282"], - [35, 21, 44, "Do not use any type assertions.", "2083084911"], - [42, 21, 38, "Do not use any type assertions.", "2888116757"], - [42, 21, 23, "Do not use any type assertions.", "1829581464"], - [83, 43, 27, "Do not use any type assertions.", "1629840712"] - ], - "public/app/features/dashboard/components/PanelEditor/utils.ts:1633800978": [ - [41, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [69, 97, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 19, 30, "Do not use any type assertions.", "4220933703"], - [77, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [94, 17, 30, "Do not use any type assertions.", "4220933703"], - [94, 43, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/RepeatRowSelect/RepeatRowSelect.tsx:3315967260": [ - [21, 41, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/SaveDashboard/SaveDashboardDiff.tsx:2241298526": [ - [12, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/SaveDashboard/SaveDashboardErrorProxy.tsx:2312531931": [ - [15, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/SaveDashboard/forms/SaveDashboardAsForm.test.tsx:2278544443": [ - [19, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 17, 27, "Do not use any type assertions.", "4217843832"] - ], - "public/app/features/dashboard/components/SaveDashboard/forms/SaveDashboardAsForm.tsx:624428941": [ - [16, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/SaveDashboard/forms/SaveDashboardForm.test.tsx:1040069335": [ - [13, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 17, 27, "Do not use any type assertions.", "4217843832"], - [63, 21, 61, "Do not use any type assertions.", "839250339"], - [63, 79, 3, "Unexpected any. Specify a different type.", "193409811"], - [70, 19, 61, "Do not use any type assertions.", "839250339"], - [70, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [100, 32, 69, "Do not use any type assertions.", "901828640"], - [100, 98, 3, "Unexpected any. Specify a different type.", "193409811"], - [113, 34, 67, "Do not use any type assertions.", "3704210944"], - [113, 98, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/SaveDashboard/forms/SaveDashboardForm.tsx:465002634": [ - [18, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 95, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/SaveDashboard/types.ts:141182170": [ - [22, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 95, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/SaveDashboard/useDashboardSave.tsx:139485119": [ - [16, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/ShareModal/ShareEmbed.test.tsx:2703340283": [ - [39, 3, 13, "Do not use any type assertions.", "538937261"], - [39, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [54, 22, 55, "Do not use any type assertions.", "2080143574"], - [58, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/ShareModal/ShareExport.tsx:3901008754": [ - [51, 67, 3, "Unexpected any. Specify a different type.", "193409811"], - [55, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [66, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 67, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [96, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [105, 28, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/ShareModal/ShareLink.test.tsx:2357087833": [ - [33, 3, 13, "Do not use any type assertions.", "538937261"], - [33, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 3, 13, "Do not use any type assertions.", "538937261"], - [42, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [76, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [80, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [111, 24, 63, "Do not use any type assertions.", "3674793430"], - [115, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [197, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [203, 22, 55, "Do not use any type assertions.", "2080143574"], - [207, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/ShareModal/ShareModal.tsx:3869940488": [ - [86, 20, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/ShareModal/SharePublicDashboard.test.tsx:3736292666": [ - [25, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 22, 55, "Do not use any type assertions.", "2080143574"], - [35, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/ShareModal/ShareSnapshot.tsx:305910085": [ - [148, 43, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/ShareModal/utils.test.ts:3192556439": [ - [34, 31, 115, "Do not use any type assertions.", "3780428905"], - [34, 31, 102, "Do not use any type assertions.", "1055478161"] - ], - "public/app/features/dashboard/components/ShareModal/utils.ts:1268485412": [ - [123, 8, 13, "Do not use any type assertions.", "538937261"], - [123, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [127, 22, 13, "Do not use any type assertions.", "538937261"], - [127, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/SubMenu/Annotations.tsx:134472584": [ - [9, 36, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/SubMenu/DashboardLinks.tsx:437267944": [ - [50, 36, 34, "Do not use any type assertions.", "2780370959"] - ], - "public/app/features/dashboard/components/SubMenu/DashboardLinksDashboard.test.tsx:486015551": [ - [21, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/SubMenu/DashboardLinksDashboard.tsx:1077727613": [ - [16, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [132, 6, 3, "Unexpected any. Specify a different type.", "193409811"], - [138, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [148, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/SubMenu/SubMenu.tsx:2844370097": [ - [31, 49, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/TransformationsEditor/TransformationEditor.tsx:317380723": [ - [20, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [57, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/TransformationsEditor/TransformationOperationRow.tsx:1189078450": [ - [20, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [94, 56, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/TransformationsEditor/TransformationsEditor.tsx:3288313385": [ - [155, 14, 26, "Do not use any type assertions.", "1095994021"], - [369, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/VersionHistory/HistorySrv.test.ts:2166765735": [ - [40, 78, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 83, 3, "Unexpected any. Specify a different type.", "193409811"], - [52, 39, 33, "Do not use any type assertions.", "630620957"], - [52, 39, 15, "Do not use any type assertions.", "363922340"], - [52, 107, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 72, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/VersionHistory/VersionHistoryComparison.tsx:316103985": [ - [17, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 29, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/VersionHistory/__mocks__/dashboardHistoryMocks.ts:2091639372": [ - [46, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 59, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/VersionHistory/useDashboardRestore.tsx:3690671767": [ - [26, 25, 21, "Do not use any type assertions.", "4272927013"], - [26, 43, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/components/VersionHistory/utils.test.ts:3825537265": [ - [127, 25, 23, "Do not use any type assertions.", "926140717"], - [127, 25, 15, "Do not use any type assertions.", "1238655602"] - ], - "public/app/features/dashboard/components/VersionHistory/utils.ts:4063759296": [ - [7, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/containers/DashboardPage.test.tsx:1097909569": [ - [76, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [76, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [108, 19, 49, "Do not use any type assertions.", "3190798329"], - [108, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [109, 19, 44, "Do not use any type assertions.", "4254279792"], - [109, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 13, 11, "Do not use any type assertions.", "751394495"], - [203, 22, 62, "Do not use any type assertions.", "2897830729"], - [205, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [264, 15, 56, "Do not use any type assertions.", "2674630592"], - [266, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/containers/DashboardPage.tsx:2503998655": [ - [101, 36, 40, "Do not use any type assertions.", "2547843745"], - [101, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [135, 32, 40, "Do not use any type assertions.", "2547843745"], - [135, 69, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/containers/SoloPanelPage.test.tsx:1655234814": [ - [26, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [70, 19, 76, "Do not use any type assertions.", "3650478741"], - [72, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [76, 19, 44, "Do not use any type assertions.", "4254279792"], - [76, 60, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/dashgrid/DashboardGrid.test.tsx:2723773538": [ - [16, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 59, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/dashgrid/DashboardGrid.tsx:25656274": [ - [79, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [189, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [189, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [270, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [276, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/dashgrid/DashboardPanel.tsx:2217542239": [ - [57, 34, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/dashgrid/LazyLoader.tsx:2512448803": [ - [52, 23, 60, "Do not use any type assertions.", "1332568031"] - ], - "public/app/features/dashboard/dashgrid/PanelChrome.test.tsx:1879414306": [ - [21, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 27, 184, "Do not use any type assertions.", "2137031202"], - [24, 27, 164, "Do not use any type assertions.", "4126965436"], - [30, 18, 53, "Do not use any type assertions.", "3326921050"], - [30, 18, 42, "Do not use any type assertions.", "1020693066"], - [45, 15, 140, "Do not use any type assertions.", "3815914317"], - [45, 15, 122, "Do not use any type assertions.", "1489375732"], - [50, 12, 104, "Do not use any type assertions.", "4098692416"], - [50, 12, 89, "Do not use any type assertions.", "504716845"] - ], - "public/app/features/dashboard/dashgrid/PanelChrome.tsx:451829163": [ - [55, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [142, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [375, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/dashgrid/PanelHeader/PanelHeaderCorner.test.tsx:2851646279": [ - [11, 21, 39, "Do not use any type assertions.", "4198878252"] - ], - "public/app/features/dashboard/dashgrid/PanelHeader/PanelHeaderMenuItem.tsx:3424574288": [ - [8, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 44, 31, "Do not use any type assertions.", "782190457"] - ], - "public/app/features/dashboard/dashgrid/SeriesVisibilityConfigFactory.ts:3527505596": [ - [47, 20, 67, "Do not use any type assertions.", "2027647299"] - ], - "public/app/features/dashboard/services/DashboardLoaderSrv.ts:923416823": [ - [32, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [76, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [87, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [115, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [136, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [170, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/services/DashboardSrv.ts:2182005817": [ - [45, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 48, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/services/TimeSrv.test.ts:793033142": [ - [18, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 26, 27, "Do not use any type assertions.", "1004515140"], - [29, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 28, 27, "Do not use any type assertions.", "1004515140"], - [58, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [69, 28, 27, "Do not use any type assertions.", "1004515140"], - [69, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [80, 28, 27, "Do not use any type assertions.", "1004515140"], - [80, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 28, 27, "Do not use any type assertions.", "1004515140"], - [92, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [103, 28, 27, "Do not use any type assertions.", "1004515140"], - [103, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [114, 28, 27, "Do not use any type assertions.", "1004515140"], - [114, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [125, 28, 27, "Do not use any type assertions.", "1004515140"], - [125, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [136, 28, 27, "Do not use any type assertions.", "1004515140"], - [136, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [147, 28, 27, "Do not use any type assertions.", "1004515140"], - [147, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [159, 30, 27, "Do not use any type assertions.", "1004515140"], - [159, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [170, 30, 27, "Do not use any type assertions.", "1004515140"], - [170, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [181, 30, 27, "Do not use any type assertions.", "1004515140"], - [181, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [192, 30, 27, "Do not use any type assertions.", "1004515140"], - [192, 54, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/services/TimeSrv.ts:706393714": [ - [23, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [107, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [211, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/state/DashboardMigrator.test.ts:1805859686": [ - [46, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [47, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [49, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [231, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [477, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [535, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [600, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [825, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [836, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [847, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1488, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [1489, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [1596, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [1597, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [2029, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [2029, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [2034, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/state/DashboardMigrator.ts:2793754426": [ - [74, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [143, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [156, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [173, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [205, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [217, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [264, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [285, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [304, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [321, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [372, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [383, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [384, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [448, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [470, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [502, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [518, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [547, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [565, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [591, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [610, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [770, 35, 34, "Do not use any type assertions.", "3372144153"], - [825, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [850, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [853, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [956, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [968, 79, 3, "Unexpected any. Specify a different type.", "193409811"], - [1006, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [1080, 17, 39, "Do not use any type assertions.", "336055535"], - [1083, 7, 12, "Do not use any type assertions.", "1619708599"], - [1083, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [1116, 18, 19, "Do not use any type assertions.", "3821099753"], - [1185, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [1276, 7, 56, "Do not use any type assertions.", "1620568212"] - ], - "public/app/features/dashboard/state/DashboardModel.refresh.test.ts:399643744": [ - [59, 17, 84, "Do not use any type assertions.", "1830656403"], - [61, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/state/DashboardModel.repeat.test.ts:4014963175": [ - [65, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [199, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [243, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [243, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [330, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [330, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [539, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [807, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/state/DashboardModel.test.ts:3639346411": [ - [163, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [313, 15, 9, "Do not use any type assertions.", "3692209159"], - [313, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [629, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [684, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [943, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [980, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [982, 24, 133, "Do not use any type assertions.", "413804299"], - [982, 24, 122, "Do not use any type assertions.", "106788027"], - [1032, 24, 100, "Do not use any type assertions.", "1490128200"], - [1032, 24, 89, "Do not use any type assertions.", "1592095128"] - ], - "public/app/features/dashboard/state/DashboardModel.ts:2406615335": [ - [61, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [62, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [69, 6, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [73, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [74, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [75, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [76, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [80, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [82, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [83, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [84, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [87, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [88, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [128, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [158, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [229, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [289, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [312, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [327, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [423, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [473, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [689, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [693, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [758, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [759, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [979, 11, 72, "Do not use any type assertions.", "2607733002"], - [982, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [1054, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [1122, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [1122, 74, 3, "Unexpected any. Specify a different type.", "193409811"], - [1127, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [1137, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [1137, 48, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/state/PanelModel.test.ts:4035235685": [ - [29, 11, 92, "Do not use any type assertions.", "2976372744"], - [34, 5, 3, "Unexpected any. Specify a different type.", "193409811"], - [52, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [60, 6, 45, "Do not use any type assertions.", "2558079085"], - [60, 6, 15, "Do not use any type assertions.", "363922340"], - [349, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [352, 80, 25, "Do not use any type assertions.", "2825799852"], - [352, 102, 3, "Unexpected any. Specify a different type.", "193409811"], - [373, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [376, 80, 25, "Do not use any type assertions.", "2825799852"], - [376, 102, 3, "Unexpected any. Specify a different type.", "193409811"], - [459, 49, 81, "Do not use any type assertions.", "1932069967"], - [460, 32, 15, "Do not use any type assertions.", "1703404951"], - [496, 25, 293, "Do not use any type assertions.", "3989849883"], - [498, 21, 213, "Do not use any type assertions.", "2695721884"] - ], - "public/app/features/dashboard/state/PanelModel.ts:1479907667": [ - [112, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [131, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [145, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [149, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [150, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [153, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [189, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [197, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [208, 18, 11, "Do not use any type assertions.", "3816020039"], - [208, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [212, 18, 11, "Do not use any type assertions.", "3816020039"], - [212, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [216, 14, 11, "Do not use any type assertions.", "3816020039"], - [216, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [221, 7, 11, "Do not use any type assertions.", "3816020039"], - [221, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [270, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [347, 21, 11, "Do not use any type assertions.", "3816020039"], - [347, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [360, 7, 11, "Do not use any type assertions.", "3816020039"], - [360, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [399, 14, 11, "Do not use any type assertions.", "3816020039"], - [399, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [417, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [468, 22, 18, "Do not use any type assertions.", "1060162663"], - [551, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [610, 14, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/state/TimeModel.ts:2763994651": [ - [3, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 14, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/state/actions.ts:1876112667": [ - [99, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/state/getPanelOptionsWithDefaults.test.ts:2828824253": [ - [400, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [405, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/state/getPanelOptionsWithDefaults.ts:305941121": [ - [19, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [83, 22, 34, "Do not use any type assertions.", "3273769083"], - [107, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [150, 26, 42, "Do not use any type assertions.", "900840241"] - ], - "public/app/features/dashboard/state/initDashboard.test.ts:3992512774": [ - [50, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [54, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 26, 42, "Do not use any type assertions.", "220226793"], - [93, 26, 20, "Do not use any type assertions.", "821852249"], - [98, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [139, 22, 47, "Do not use any type assertions.", "492578677"], - [141, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [143, 17, 41, "Do not use any type assertions.", "1363816804"], - [145, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/state/initDashboard.ts:3315339245": [ - [209, 71, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/state/reducers.ts:2272523560": [ - [64, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/utils/getPanelMenu.test.ts:2434529719": [ - [99, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [100, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [101, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [168, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [170, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [176, 16, 66, "Do not use any type assertions.", "1695061805"], - [185, 15, 30, "Do not use any type assertions.", "3826941506"], - [185, 42, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/utils/getPanelMenu.ts:4203551117": [ - [27, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [82, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [86, 19, 97, "Do not use any type assertions.", "1773703978"], - [86, 113, 3, "Unexpected any. Specify a different type.", "193409811"], - [131, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [137, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [144, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 34, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/utils/panel.test.ts:3058223142": [ - [56, 12, 40, "Do not use any type assertions.", "2092294087"], - [57, 12, 38, "Do not use any type assertions.", "93692650"], - [74, 12, 40, "Do not use any type assertions.", "2092294087"], - [75, 12, 38, "Do not use any type assertions.", "93692650"], - [88, 38, 45, "Do not use any type assertions.", "2558079085"], - [88, 38, 15, "Do not use any type assertions.", "363922340"] - ], - "public/app/features/dashboard/utils/panelMerge.test.ts:1103544867": [ - [66, 21, 55, "Do not use any type assertions.", "3095050695"], - [69, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 7, 19, "Do not use any type assertions.", "3323491828"], - [85, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [112, 7, 19, "Do not use any type assertions.", "1718541623"], - [112, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dashboard/utils/panelMerge.ts:389863315": [ - [21, 11, 14, "Do not use any type assertions.", "3457324340"], - [22, 14, 14, "Do not use any type assertions.", "3457324340"], - [23, 15, 14, "Do not use any type assertions.", "3457324340"], - [24, 14, 14, "Do not use any type assertions.", "3457324340"], - [25, 12, 14, "Do not use any type assertions.", "3457324340"], - [45, 19, 39, "Do not use any type assertions.", "3289901393"], - [70, 30, 10, "Do not use any type assertions.", "1501063862"], - [70, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 13, 12, "Do not use any type assertions.", "1619708599"], - [71, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [112, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [112, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/datasources/DashboardsTable.test.tsx:1950355032": [ - [9, 16, 23, "Do not use any type assertions.", "860279322"] - ], - "public/app/features/datasources/DataSourceDashboards.test.tsx:1369048021": [ - [12, 14, 14, "Do not use any type assertions.", "3112983303"], - [13, 16, 23, "Do not use any type assertions.", "860279322"], - [14, 16, 24, "Do not use any type assertions.", "3405802617"] - ], - "public/app/features/datasources/DataSourceDashboards.tsx:3932611556": [ - [49, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/datasources/DataSourcesListPage.test.tsx:2960099202": [ - [19, 17, 26, "Do not use any type assertions.", "3994646623"], - [22, 14, 126, "Do not use any type assertions.", "1409469672"] - ], - "public/app/features/datasources/DataSourcesListPage.tsx:247845505": [ - [44, 14, 22, "Do not use any type assertions.", "2167463294"] - ], - "public/app/features/datasources/__mocks__/dataSourcesMocks.ts:1217473343": [ - [23, 9, 35, "Do not use any type assertions.", "2095437639"] - ], - "public/app/features/datasources/settings/ButtonRow.tsx:1416418772": [ - [12, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/datasources/state/actions.test.ts:356136985": [ - [29, 6, 59, "Do not use any type assertions.", "3685154675"], - [29, 6, 49, "Do not use any type assertions.", "1184085652"], - [34, 3, 230, "Do not use any type assertions.", "2090584436"], - [42, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [47, 7, 171, "Do not use any type assertions.", "3432932238"], - [53, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [87, 5, 26, "Do not use any type assertions.", "3634150846"], - [89, 18, 28, "Do not use any type assertions.", "58929747"], - [101, 5, 26, "Do not use any type assertions.", "3634150846"], - [104, 20, 28, "Do not use any type assertions.", "58929747"], - [109, 20, 27, "Do not use any type assertions.", "2748031590"], - [119, 22, 14, "Do not use any type assertions.", "2904900588"], - [125, 5, 26, "Do not use any type assertions.", "3634150846"], - [128, 20, 28, "Do not use any type assertions.", "58929747"], - [133, 20, 27, "Do not use any type assertions.", "2748031590"], - [198, 24, 90, "Do not use any type assertions.", "604991569"], - [198, 111, 3, "Unexpected any. Specify a different type.", "193409811"], - [202, 58, 29, "Do not use any type assertions.", "1130835716"], - [212, 73, 29, "Do not use any type assertions.", "1130835716"], - [234, 24, 90, "Do not use any type assertions.", "604991569"], - [234, 111, 3, "Unexpected any. Specify a different type.", "193409811"], - [265, 11, 214, "Do not use any type assertions.", "2154278143"], - [272, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [291, 11, 227, "Do not use any type assertions.", "1167263024"], - [297, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/datasources/state/actions.ts:420558908": [ - [134, 23, 66, "Do not use any type assertions.", "119077733"], - [196, 13, 24, "Do not use any type assertions.", "3405802617"] - ], - "public/app/features/datasources/state/navModel.ts:1240404259": [ - [172, 4, 495, "Do not use any type assertions.", "1598410110"], - [196, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/datasources/state/reducers.test.ts:4195246710": [ - [28, 3, 276, "Do not use any type assertions.", "3381534227"], - [33, 10, 20, "Do not use any type assertions.", "1774223851"], - [132, 30, 74, "Do not use any type assertions.", "613171500"], - [141, 30, 72, "Do not use any type assertions.", "2831306079"], - [151, 64, 29, "Do not use any type assertions.", "1130835716"], - [154, 18, 29, "Do not use any type assertions.", "1130835716"], - [165, 18, 29, "Do not use any type assertions.", "1130835716"] - ], - "public/app/features/datasources/state/reducers.ts:562552924": [ - [13, 14, 24, "Do not use any type assertions.", "3405802617"], - [20, 18, 26, "Do not use any type assertions.", "1093089864"] - ], - "public/app/features/datasources/state/selectors.ts:3231915692": [ - [24, 9, 24, "Do not use any type assertions.", "3405802617"], - [32, 9, 26, "Do not use any type assertions.", "1093089864"] - ], - "public/app/features/datasources/utils/passwordHandlers.test.ts:3967809989": [ - [4, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/datasources/utils/passwordHandlers.ts:2199254032": [ - [39, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/color.ts:2334926885": [ - [36, 29, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/editors/ColorDimensionEditor.tsx:3353857385": [ - [17, 80, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 85, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/editors/FolderPickerTab.tsx:4245312632": [ - [77, 11, 23, "Do not use any type assertions.", "4267880497"] - ], - "public/app/features/dimensions/editors/IconSelector.tsx:1330382064": [ - [14, 20, 13, "Do not use any type assertions.", "538937261"], - [14, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/editors/NumberInput.tsx:2710080822": [ - [77, 18, 8, "Do not use any type assertions.", "735633348"], - [77, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/editors/ResourceDimensionEditor.tsx:3452696248": [ - [23, 95, 26, "Do not use any type assertions.", "51717362"], - [25, 5, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 73, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/editors/ResourcePicker.tsx:3572220995": [ - [42, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/editors/ScalarDimensionEditor.tsx:1266393080": [ - [21, 106, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/editors/ScaleDimensionEditor.tsx:1864534954": [ - [20, 103, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/editors/TextDimensionEditor.tsx:2868338759": [ - [19, 95, 26, "Do not use any type assertions.", "51717362"], - [21, 5, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 92, 26, "Do not use any type assertions.", "51717362"], - [25, 5, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 100, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/editors/ThresholdsEditor/ThresholdsEditor.test.tsx:4164297658": [ - [17, 19, 38, "Do not use any type assertions.", "2546466567"], - [30, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [134, 24, 67, "Do not use any type assertions.", "2659531287"], - [134, 24, 34, "Do not use any type assertions.", "3111173560"], - [134, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [156, 24, 67, "Do not use any type assertions.", "928709979"], - [156, 24, 34, "Do not use any type assertions.", "3463387124"], - [156, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [202, 12, 35, "Do not use any type assertions.", "2793160641"], - [202, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [204, 12, 48, "Do not use any type assertions.", "3801527841"], - [204, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [205, 12, 48, "Do not use any type assertions.", "1046898370"], - [205, 57, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/editors/ThresholdsEditor/ThresholdsEditor.tsx:4250170652": [ - [109, 27, 15, "Do not use any type assertions.", "3610795007"] - ], - "public/app/features/dimensions/editors/ValueMappingsEditor/ValueMappingsEditor.test.tsx:3409587481": [ - [7, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 10, 9, "Do not use any type assertions.", "3692209159"], - [30, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 13, 9, "Do not use any type assertions.", "3692209159"], - [31, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/editors/ValueMappingsEditor/ValueMappingsEditor.tsx:1457822247": [ - [11, 67, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 72, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/editors/ValueMappingsEditor/ValueMappingsEditorModal.test.tsx:2010910203": [ - [9, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/resource.ts:2481351943": [ - [12, 36, 13, "Do not use any type assertions.", "538937261"], - [12, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/scale.test.ts:3035679241": [ - [6, 36, 9, "Do not use any type assertions.", "3692209159"], - [6, 42, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/scale.ts:3647699328": [ - [98, 11, 9, "Do not use any type assertions.", "3692209159"], - [98, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/text.ts:2569573171": [ - [30, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/types.ts:1286653319": [ - [2, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/dimensions/utils.ts:1775454224": [ - [132, 13, 6, "Do not use any type assertions.", "1890796757"], - [144, 9, 16, "Do not use any type assertions.", "2939667099"], - [144, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/AddToDashboard/index.test.tsx:3701572029": [ - [22, 13, 114, "Do not use any type assertions.", "77754008"] - ], - "public/app/features/explore/ElapsedTime.tsx:327827129": [ - [10, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/Explore.test.tsx:636708638": [ - [47, 22, 132, "Do not use any type assertions.", "3677999951"], - [82, 13, 17, "Do not use any type assertions.", "192014884"], - [82, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/Explore.tsx:1286035681": [ - [170, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [173, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [499, 15, 88, "Do not use any type assertions.", "3946407374"] - ], - "public/app/features/explore/ExploreGraph.tsx:2514301236": [ - [169, 10, 200, "Do not use any type assertions.", "1427203377"] - ], - "public/app/features/explore/ExplorePaneContainer.tsx:712674538": [ - [37, 6, 3, "Unexpected any. Specify a different type.", "193409811"], - [84, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [106, 64, 35, "Do not use any type assertions.", "4005822185"] - ], - "public/app/features/explore/ExploreQueryInspector.test.tsx:78894789": [ - [18, 6, 126, "Do not use any type assertions.", "3887322891"], - [21, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 17, 15, "Do not use any type assertions.", "2931285723"], - [83, 11, 9, "Do not use any type assertions.", "3692209159"], - [83, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [87, 11, 9, "Do not use any type assertions.", "3692209159"], - [87, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/ExploreQueryInspector.tsx:1760146357": [ - [33, 62, 44, "Do not use any type assertions.", "290789231"] - ], - "public/app/features/explore/Logs.tsx:1380971528": [ - [74, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [194, 68, 17, "Do not use any type assertions.", "1830153619"] - ], - "public/app/features/explore/LogsContainer.tsx:2748297471": [ - [45, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 70, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/LogsMetaRow.tsx:305844190": [ - [106, 31, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/NodeGraphContainer.test.tsx:1944552671": [ - [16, 19, 17, "Do not use any type assertions.", "192014884"], - [16, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 19, 17, "Do not use any type assertions.", "192014884"], - [31, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [54, 41, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/QueryRows.test.tsx:354066618": [ - [21, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 19, 307, "Do not use any type assertions.", "2389713025"], - [43, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 62, 25, "Do not use any type assertions.", "610428747"] - ], - "public/app/features/explore/ResponseErrorContainer.test.tsx:2394475735": [ - [49, 15, 9, "Do not use any type assertions.", "3692209159"], - [49, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/RichHistory/RichHistory.test.tsx:736523218": [ - [25, 11, 18, "Do not use any type assertions.", "1307655676"] - ], - "public/app/features/explore/RichHistory/RichHistory.tsx:2023294157": [ - [92, 96, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/RichHistory/RichHistoryCard.test.tsx:2720338262": [ - [66, 24, 39, "Do not use any type assertions.", "2245640660"] - ], - "public/app/features/explore/RichHistory/RichHistoryStarredTab.test.tsx:132203593": [ - [25, 30, 9, "Do not use any type assertions.", "3692209159"], - [25, 36, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/TableContainer.test.tsx:1014358799": [ - [50, 13, 27, "Do not use any type assertions.", "1107215874"], - [55, 13, 17, "Do not use any type assertions.", "192014884"], - [55, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 9, 9, "Do not use any type assertions.", "3692209159"], - [56, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [75, 24, 86, "Do not use any type assertions.", "2242309894"] - ], - "public/app/features/explore/TraceView/TraceView.test.tsx:4208667279": [ - [61, 21, 79, "Do not use any type assertions.", "4192888253"], - [65, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [159, 18, 9, "Do not use any type assertions.", "3815122951"], - [159, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [193, 16, 11, "Do not use any type assertions.", "319541530"], - [193, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [225, 12, 9, "Do not use any type assertions.", "3815122951"], - [225, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [227, 16, 11, "Do not use any type assertions.", "319541530"], - [227, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [259, 12, 11, "Do not use any type assertions.", "319541530"], - [259, 20, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/TraceView/TraceView.tsx:1542996129": [ - [121, 30, 45, "Do not use any type assertions.", "2423479359"], - [122, 33, 48, "Do not use any type assertions.", "1615058495"], - [185, 25, 11, "Do not use any type assertions.", "1662677663"], - [185, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [249, 13, 9, "Do not use any type assertions.", "3692209159"], - [249, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [250, 13, 11, "Do not use any type assertions.", "772402835"] - ], - "public/app/features/explore/TraceView/TraceViewContainer.test.tsx:1394764879": [ - [74, 7, 101, "Do not use any type assertions.", "1913214000"], - [88, 7, 101, "Do not use any type assertions.", "698791473"], - [93, 7, 101, "Do not use any type assertions.", "1733535282"], - [98, 7, 101, "Do not use any type assertions.", "698791473"], - [103, 7, 101, "Do not use any type assertions.", "1733535282"], - [108, 7, 101, "Do not use any type assertions.", "698791473"], - [113, 7, 101, "Do not use any type assertions.", "1733535282"] - ], - "public/app/features/explore/TraceView/createSpanLink.test.ts:1804304128": [ - [24, 23, 181, "Do not use any type assertions.", "1793871091"], - [26, 17, 52, "Do not use any type assertions.", "3769148923"], - [26, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [247, 23, 207, "Do not use any type assertions.", "4131027420"], - [249, 17, 78, "Do not use any type assertions.", "767452980"], - [249, 92, 3, "Unexpected any. Specify a different type.", "193409811"], - [251, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [386, 23, 187, "Do not use any type assertions.", "1252115880"], - [388, 17, 58, "Do not use any type assertions.", "2214706112"], - [388, 72, 3, "Unexpected any. Specify a different type.", "193409811"], - [390, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [422, 31, 70, "Do not use any type assertions.", "63371134"], - [436, 31, 251, "Do not use any type assertions.", "4268858591"], - [509, 20, 36, "Do not use any type assertions.", "2101934788"], - [509, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [544, 13, 54, "Do not use any type assertions.", "1042587208"], - [546, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [552, 9, 711, "Do not use any type assertions.", "3798148596"], - [587, 7, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/TraceView/createSpanLink.tsx:2333866393": [ - [105, 64, 49, "Do not use any type assertions.", "1161243976"], - [135, 17, 11, "Do not use any type assertions.", "772402835"], - [177, 17, 11, "Do not use any type assertions.", "772402835"], - [239, 24, 25, "Do not use any type assertions.", "3811371348"], - [244, 11, 23, "Do not use any type assertions.", "2856161277"], - [249, 5, 14, "Do not use any type assertions.", "3854427458"], - [291, 24, 25, "Do not use any type assertions.", "3811371348"], - [296, 11, 23, "Do not use any type assertions.", "2856161277"], - [301, 5, 14, "Do not use any type assertions.", "3854427458"], - [314, 40, 257, "Do not use any type assertions.", "427212904"] - ], - "public/app/features/explore/TraceView/useChildrenState.test.ts:565325974": [ - [41, 10, 51, "Do not use any type assertions.", "3380183603"], - [42, 10, 52, "Do not use any type assertions.", "3157709691"], - [55, 10, 51, "Do not use any type assertions.", "3380183603"], - [56, 10, 52, "Do not use any type assertions.", "3157709691"] - ], - "public/app/features/explore/TraceView/useDetailState.test.ts:3368412478": [ - [32, 16, 28, "Do not use any type assertions.", "1834382737"] - ], - "public/app/features/explore/TraceView/useSearch.test.ts:1623768762": [ - [10, 8, 234, "Do not use any type assertions.", "220100090"], - [10, 8, 221, "Do not use any type assertions.", "3060965221"], - [21, 8, 234, "Do not use any type assertions.", "3090222521"], - [21, 8, 221, "Do not use any type assertions.", "3324598982"] - ], - "public/app/features/explore/Wrapper.test.tsx:3368179244": [ - [29, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 5, 30, "Do not use any type assertions.", "1427058760"], - [90, 12, 30, "Do not use any type assertions.", "1427058760"], - [98, 5, 30, "Do not use any type assertions.", "1427058760"], - [102, 5, 30, "Do not use any type assertions.", "1427058760"], - [117, 5, 30, "Do not use any type assertions.", "1427058760"], - [122, 5, 33, "Do not use any type assertions.", "2876952172"], - [137, 5, 30, "Do not use any type assertions.", "1427058760"], - [179, 5, 30, "Do not use any type assertions.", "1427058760"], - [180, 5, 33, "Do not use any type assertions.", "2876952172"], - [204, 12, 30, "Do not use any type assertions.", "1427058760"], - [209, 12, 33, "Do not use any type assertions.", "2876952172"], - [234, 5, 30, "Do not use any type assertions.", "1427058760"], - [235, 5, 33, "Do not use any type assertions.", "2876952172"], - [252, 5, 30, "Do not use any type assertions.", "1427058760"], - [253, 5, 33, "Do not use any type assertions.", "2876952172"], - [259, 19, 77, "Do not use any type assertions.", "2923018745"], - [259, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [259, 93, 3, "Unexpected any. Specify a different type.", "193409811"], - [271, 5, 30, "Do not use any type assertions.", "1427058760"], - [283, 5, 30, "Do not use any type assertions.", "1427058760"], - [284, 5, 33, "Do not use any type assertions.", "2876952172"], - [290, 19, 77, "Do not use any type assertions.", "2923018745"], - [290, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [290, 93, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/spec/helper/setup.tsx:1276815493": [ - [51, 19, 511, "Do not use any type assertions.", "4137899050"], - [63, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [95, 88, 12, "Do not use any type assertions.", "3603862904"], - [95, 97, 3, "Unexpected any. Specify a different type.", "193409811"], - [104, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [122, 9, 628, "Do not use any type assertions.", "490025749"], - [144, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [169, 6, 174, "Do not use any type assertions.", "816218855"] - ], - "public/app/features/explore/spec/interpolation.test.tsx:2779309478": [ - [19, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 5, 35, "Do not use any type assertions.", "3223348046"] - ], - "public/app/features/explore/spec/queryHistory.test.tsx:3673250036": [ - [76, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [100, 5, 35, "Do not use any type assertions.", "3223348046"], - [135, 5, 35, "Do not use any type assertions.", "3223348046"], - [159, 5, 35, "Do not use any type assertions.", "3223348046"], - [196, 5, 35, "Do not use any type assertions.", "3223348046"], - [232, 7, 35, "Do not use any type assertions.", "3223348046"], - [247, 7, 35, "Do not use any type assertions.", "3223348046"], - [278, 5, 35, "Do not use any type assertions.", "3223348046"] - ], - "public/app/features/explore/state/datasource.test.ts:438767658": [ - [9, 31, 155, "Do not use any type assertions.", "2822779034"], - [20, 43, 102, "Do not use any type assertions.", "1531904347"], - [20, 43, 82, "Do not use any type assertions.", "4081032466"] - ], - "public/app/features/explore/state/explorePane.test.ts:4132316014": [ - [21, 6, 59, "Do not use any type assertions.", "3685154675"], - [21, 6, 49, "Do not use any type assertions.", "1184085652"], - [27, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 24, 179, "Do not use any type assertions.", "1406126331"], - [36, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 19, 453, "Do not use any type assertions.", "2303543312"], - [77, 7, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/state/helpers.ts:4035701288": [ - [32, 21, 25, "Do not use any type assertions.", "3960255500"], - [32, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 17, 27, "Do not use any type assertions.", "3767039604"], - [33, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/state/main.test.ts:2016098358": [ - [43, 53, 45, "Do not use any type assertions.", "4199062213"], - [43, 53, 20, "Do not use any type assertions.", "3781735909"], - [123, 29, 73, "Do not use any type assertions.", "404162390"], - [123, 29, 53, "Do not use any type assertions.", "3362548127"], - [127, 30, 73, "Do not use any type assertions.", "1948224149"], - [127, 30, 53, "Do not use any type assertions.", "3121845724"], - [131, 29, 100, "Do not use any type assertions.", "4185961967"], - [131, 29, 84, "Do not use any type assertions.", "3756132851"], - [140, 32, 103, "Do not use any type assertions.", "3605215057"], - [140, 32, 87, "Do not use any type assertions.", "1555289549"], - [146, 29, 73, "Do not use any type assertions.", "404162390"], - [146, 29, 53, "Do not use any type assertions.", "3362548127"], - [150, 30, 73, "Do not use any type assertions.", "1948224149"], - [150, 30, 53, "Do not use any type assertions.", "3121845724"], - [154, 29, 100, "Do not use any type assertions.", "4185961967"], - [154, 29, 84, "Do not use any type assertions.", "3756132851"], - [163, 32, 102, "Do not use any type assertions.", "1009193258"], - [163, 32, 86, "Do not use any type assertions.", "2036981238"], - [172, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [183, 23, 50, "Do not use any type assertions.", "2245445628"], - [183, 23, 34, "Do not use any type assertions.", "2633372704"] - ], - "public/app/features/explore/state/main.ts:1061909607": [ - [184, 23, 41, "Do not use any type assertions.", "1938636861"], - [196, 26, 36, "Do not use any type assertions.", "3301028253"], - [279, 68, 13, "Do not use any type assertions.", "4089289919"], - [279, 78, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/state/query.test.ts:3284103172": [ - [52, 6, 59, "Do not use any type assertions.", "3685154675"], - [52, 6, 49, "Do not use any type assertions.", "1184085652"], - [59, 3, 63, "Do not use any type assertions.", "1561667851"], - [60, 7, 279, "Do not use any type assertions.", "3381716549"], - [76, 15, 20, "Do not use any type assertions.", "2769267034"], - [76, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 10, 26, "Do not use any type assertions.", "2149993731"], - [78, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [87, 15, 20, "Do not use any type assertions.", "2769267034"], - [87, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [89, 10, 26, "Do not use any type assertions.", "2149993731"], - [89, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [96, 23, 77, "Do not use any type assertions.", "2312034281"], - [96, 23, 31, "Do not use any type assertions.", "245379388"], - [96, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [105, 15, 20, "Do not use any type assertions.", "2769267034"], - [105, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [107, 10, 26, "Do not use any type assertions.", "2149993731"], - [107, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [109, 5, 68, "Do not use any type assertions.", "2161718620"], - [155, 12, 26, "Do not use any type assertions.", "2149993731"], - [155, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [171, 10, 91, "Do not use any type assertions.", "361199069"], - [172, 10, 91, "Do not use any type assertions.", "856046974"], - [204, 19, 18, "Do not use any type assertions.", "2008580063"], - [221, 36, 65, "Do not use any type assertions.", "1360817612"], - [221, 36, 45, "Do not use any type assertions.", "1822862469"], - [231, 30, 131, "Do not use any type assertions.", "4156386629"], - [231, 30, 111, "Do not use any type assertions.", "1400349324"], - [241, 12, 26, "Do not use any type assertions.", "2149993731"], - [241, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [245, 27, 130, "Do not use any type assertions.", "2630320091"], - [246, 22, 38, "Do not use any type assertions.", "2113153552"], - [263, 12, 26, "Do not use any type assertions.", "2149993731"], - [263, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [267, 27, 92, "Do not use any type assertions.", "202252635"], - [267, 37, 38, "Do not use any type assertions.", "2113153552"], - [280, 12, 26, "Do not use any type assertions.", "2149993731"], - [280, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [284, 27, 130, "Do not use any type assertions.", "2630320091"], - [285, 22, 38, "Do not use any type assertions.", "2113153552"], - [309, 12, 26, "Do not use any type assertions.", "2149993731"], - [309, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [338, 15, 247, "Do not use any type assertions.", "2815202033"], - [338, 15, 214, "Do not use any type assertions.", "3562044333"], - [350, 12, 26, "Do not use any type assertions.", "2149993731"], - [350, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/state/query.ts:4018016657": [ - [298, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/state/time.test.ts:2790808952": [ - [27, 6, 59, "Do not use any type assertions.", "3685154675"], - [27, 6, 49, "Do not use any type assertions.", "1184085652"], - [37, 12, 34, "Do not use any type assertions.", "1558989574"], - [37, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [55, 16, 11, "Do not use any type assertions.", "1435517025"], - [55, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [75, 16, 11, "Do not use any type assertions.", "1435517025"], - [75, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 37, 102, "Do not use any type assertions.", "778841837"], - [93, 37, 82, "Do not use any type assertions.", "2270076132"], - [104, 32, 232, "Do not use any type assertions.", "1057706019"], - [104, 32, 212, "Do not use any type assertions.", "4049997994"] - ], - "public/app/features/explore/state/utils.ts:1225988933": [ - [45, 9, 66, "Do not use any type assertions.", "2323776243"], - [49, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 17, 42, "Do not use any type assertions.", "695035808"], - [53, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 15, 35, "Do not use any type assertions.", "935225945"], - [63, 15, 15, "Do not use any type assertions.", "363922340"] - ], - "public/app/features/explore/utils/decorators.test.ts:2418805231": [ - [25, 6, 42, "Do not use any type assertions.", "3372195270"], - [25, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [75, 15, 26, "Do not use any type assertions.", "1042505601"], - [75, 15, 13, "Do not use any type assertions.", "2146830713"], - [78, 17, 28, "Do not use any type assertions.", "152590796"], - [78, 17, 20, "Do not use any type assertions.", "3781735909"], - [80, 16, 28, "Do not use any type assertions.", "152590796"], - [80, 16, 20, "Do not use any type assertions.", "3781735909"], - [82, 17, 28, "Do not use any type assertions.", "152590796"], - [82, 17, 20, "Do not use any type assertions.", "3781735909"], - [97, 17, 26, "Do not use any type assertions.", "1042505601"], - [97, 17, 13, "Do not use any type assertions.", "2146830713"], - [120, 17, 26, "Do not use any type assertions.", "1042505601"], - [120, 17, 13, "Do not use any type assertions.", "2146830713"], - [145, 17, 26, "Do not use any type assertions.", "1042505601"], - [145, 17, 13, "Do not use any type assertions.", "2146830713"], - [289, 20, 69, "Do not use any type assertions.", "2556322866"], - [289, 20, 49, "Do not use any type assertions.", "897003755"], - [305, 23, 14, "Do not use any type assertions.", "3854427458"], - [324, 23, 14, "Do not use any type assertions.", "3854427458"], - [343, 23, 14, "Do not use any type assertions.", "3854427458"] - ], - "public/app/features/explore/utils/links.test.ts:567915883": [ - [130, 98, 3, "Unexpected any. Specify a different type.", "193409811"], - [130, 114, 3, "Unexpected any. Specify a different type.", "193409811"], - [138, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [141, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [146, 16, 53, "Do not use any type assertions.", "4019482929"], - [148, 7, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/explore/utils/links.ts:2654752173": [ - [34, 20, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/expressions/ExpressionDatasource.test.ts:4160058828": [ - [7, 6, 59, "Do not use any type assertions.", "3685154675"], - [7, 6, 49, "Do not use any type assertions.", "1184085652"], - [21, 45, 32, "Do not use any type assertions.", "2255106576"], - [29, 45, 32, "Do not use any type assertions.", "2255106576"] - ], - "public/app/features/expressions/ExpressionDatasource.ts:553534759": [ - [24, 89, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 13, 84, "Do not use any type assertions.", "472882176"], - [99, 18, 190, "Do not use any type assertions.", "1940307391"] - ], - "public/app/features/expressions/components/Condition.tsx:3543451655": [ - [34, 23, 39, "Do not use any type assertions.", "3896476776"] - ], - "public/app/features/expressions/guards.ts:4248223389": [ - [14, 21, 28, "Do not use any type assertions.", "3052769877"] - ], - "public/app/features/folders/FolderSettingsPage.test.tsx:1109052730": [ - [13, 14, 14, "Do not use any type assertions.", "3112983303"], - [36, 19, 40, "Do not use any type assertions.", "2693764194"] - ], - "public/app/features/folders/state/actions.test.ts:2285846850": [ - [21, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/geo/editor/GazetteerPathEditor.tsx:2316871287": [ - [30, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 19, 20, "Do not use any type assertions.", "1193932799"], - [38, 36, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/geo/format/geohash.ts:3103263954": [ - [35, 34, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/geo/format/geojson.test.ts:1733727045": [ - [87, 9, 9, "Do not use any type assertions.", "3692209159"], - [87, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/geo/format/geojson.ts:2025153506": [ - [6, 10, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/geo/format/utils.ts:1202005514": [ - [14, 28, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/geo/gazetteer/gazetteer.test.ts:718896980": [ - [4, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 6, 59, "Do not use any type assertions.", "3685154675"], - [46, 6, 49, "Do not use any type assertions.", "1184085652"] - ], - "public/app/features/geo/gazetteer/gazetteer.ts:681653196": [ - [28, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 18, 14, "Do not use any type assertions.", "2036811751"], - [33, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [157, 21, 10, "Do not use any type assertions.", "3870965084"] - ], - "public/app/features/geo/gazetteer/worldmap.test.ts:2251987660": [ - [6, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 6, 59, "Do not use any type assertions.", "3685154675"], - [9, 6, 49, "Do not use any type assertions.", "1184085652"] - ], - "public/app/features/geo/utils/frameVectorSource.ts:3630880852": [ - [28, 20, 29, "Do not use any type assertions.", "1337699239"] - ], - "public/app/features/geo/utils/location.test.ts:3751297173": [ - [30, 61, 10, "Do not use any type assertions.", "525921067"], - [56, 53, 10, "Do not use any type assertions.", "525921067"] - ], - "public/app/features/inspector/InspectDataOptions.tsx:389940884": [ - [42, 46, 18, "Do not use any type assertions.", "3360296128"], - [42, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 11, 111, "Do not use any type assertions.", "2259324693"], - [71, 42, 27, "Do not use any type assertions.", "700802064"] - ], - "public/app/features/inspector/InspectDataTab.test.tsx:101023648": [ - [41, 9, 83, "Do not use any type assertions.", "1478605180"], - [70, 27, 465, "Do not use any type assertions.", "1173398047"], - [70, 27, 450, "Do not use any type assertions.", "1966040902"], - [92, 29, 2029, "Do not use any type assertions.", "1162974715"], - [92, 29, 2014, "Do not use any type assertions.", "701279586"] - ], - "public/app/features/inspector/InspectDataTab.tsx:2343660740": [ - [172, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/inspector/InspectErrorTab.tsx:1005725224": [ - [9, 67, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/inspector/InspectJSONTab.tsx:2247445678": [ - [177, 28, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/inspector/QueryInspector.tsx:2795770660": [ - [43, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [130, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [180, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [215, 28, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/invites/InviteesTable.test.tsx:3612992381": [ - [11, 14, 15, "Do not use any type assertions.", "3505843099"] - ], - "public/app/features/invites/SignupInvited.test.tsx:1136589956": [ - [17, 6, 59, "Do not use any type assertions.", "3685154675"], - [17, 6, 49, "Do not use any type assertions.", "1184085652"], - [39, 13, 55, "Do not use any type assertions.", "1480427365"], - [41, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/invites/state/selectors.ts:48033970": [ - [6, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/library-panels/components/DeleteLibraryPanelModal/reducer.test.ts:3788184872": [ - [26, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/library-panels/components/LibraryPanelsSearch/LibraryPanelsSearch.test.tsx:527941282": [ - [15, 6, 59, "Do not use any type assertions.", "3685154675"], - [15, 6, 49, "Do not use any type assertions.", "1184085652"], - [27, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 20, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/library-panels/components/LibraryPanelsSearch/reducer.test.ts:2310621110": [ - [43, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/library-panels/components/LibraryPanelsView/actions.ts:2579757859": [ - [66, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/library-panels/types.ts:3456911675": [ - [39, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/library-panels/utils.ts:358377980": [ - [27, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 41, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/live/centrifuge/LiveDataStream.test.ts:1785235735": [ - [28, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [258, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [295, 19, 78, "Do not use any type assertions.", "631163174"], - [330, 19, 88, "Do not use any type assertions.", "2560723271"], - [343, 19, 78, "Do not use any type assertions.", "631163174"], - [392, 19, 88, "Do not use any type assertions.", "2560723271"], - [500, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [521, 19, 78, "Do not use any type assertions.", "631163174"], - [556, 19, 88, "Do not use any type assertions.", "2560723271"], - [569, 19, 78, "Do not use any type assertions.", "631163174"], - [618, 19, 88, "Do not use any type assertions.", "2560723271"], - [741, 19, 78, "Do not use any type assertions.", "631163174"], - [853, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/live/centrifuge/LiveDataStream.ts:1996235275": [ - [114, 5, 17, "Do not use any type assertions.", "185576889"], - [121, 38, 73, "Do not use any type assertions.", "3751879535"], - [150, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [317, 35, 32, "Do not use any type assertions.", "1594581707"] - ], - "public/app/features/live/centrifuge/channel.ts:2028184175": [ - [24, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 43, 25, "Do not use any type assertions.", "4090116211"], - [101, 39, 25, "Do not use any type assertions.", "4090116211"], - [122, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [141, 11, 737, "Do not use any type assertions.", "1490270676"] - ], - "public/app/features/live/centrifuge/service.ts:3443743162": [ - [102, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [106, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [110, 42, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/live/centrifuge/serviceWorkerProxy.ts:191503902": [ - [16, 66, 34, "Do not use any type assertions.", "3014930920"], - [46, 6, 100, "Do not use any type assertions.", "2178329376"] - ], - "public/app/features/live/centrifuge/transferHandlers.ts:1625470895": [ - [5, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/live/index.ts:4264199505": [ - [10, 3, 13, "Do not use any type assertions.", "538937261"], - [10, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 9, 41, "Do not use any type assertions.", "1116879754"] - ], - "public/app/features/live/live.test.ts:1412101562": [ - [20, 45, 11, "Do not use any type assertions.", "420652771"], - [20, 53, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/live/pages/AddNewRule.tsx:2593231672": [ - [59, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/live/pages/PipelineAdminPage.tsx:952820098": [ - [13, 51, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/live/pages/PipelineTable.tsx:894975337": [ - [31, 42, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/live/pages/RuleModal.tsx:1047640219": [ - [39, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [83, 20, 15, "Do not use any type assertions.", "1934144755"], - [83, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/live/pages/RuleTest.tsx:28761909": [ - [29, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 18, 27, "Do not use any type assertions.", "3077334388"], - [30, 40, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/live/pages/types.ts:4019148185": [ - [2, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/live/pages/utils.ts:270086979": [ - [19, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/manage-dashboards/DashboardImportPage.tsx:3511470668": [ - [81, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [82, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/manage-dashboards/components/ImportDashboardForm.tsx:72231267": [ - [62, 28, 9, "Do not use any type assertions.", "3692209159"], - [62, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [125, 22, 23, "Do not use any type assertions.", "2412780303"], - [125, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 34, 20, "Do not use any type assertions.", "2236854913"], - [151, 51, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/manage-dashboards/components/SnapshotListTable.test.tsx:3532598703": [ - [5, 6, 59, "Do not use any type assertions.", "3685154675"], - [5, 6, 49, "Do not use any type assertions.", "1184085652"], - [26, 3, 13, "Do not use any type assertions.", "615815978"], - [26, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/manage-dashboards/services/ValidationSrv.ts:3898516848": [ - [10, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 14, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/manage-dashboards/state/actions.test.ts:2299732392": [ - [15, 8, 117, "Do not use any type assertions.", "1240697555"], - [20, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 18, 175, "Do not use any type assertions.", "2932806104"], - [32, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 23, 174, "Do not use any type assertions.", "1993531937"] - ], - "public/app/features/manage-dashboards/state/actions.ts:2206397932": [ - [41, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [49, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [52, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [54, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [94, 15, 220, "Do not use any type assertions.", "2541065208"], - [112, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [136, 26, 11, "Do not use any type assertions.", "1435517025"], - [136, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [147, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [172, 91, 3, "Unexpected any. Specify a different type.", "193409811"], - [189, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [192, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [193, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [231, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [231, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [231, 94, 3, "Unexpected any. Specify a different type.", "193409811"], - [232, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [286, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [291, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [315, 31, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/manage-dashboards/state/reducers.test.ts:4097685863": [ - [94, 25, 53, "Do not use any type assertions.", "3616064645"], - [95, 23, 51, "Do not use any type assertions.", "2715348726"], - [108, 25, 53, "Do not use any type assertions.", "3616064645"], - [109, 23, 51, "Do not use any type assertions.", "2715348726"], - [110, 27, 55, "Do not use any type assertions.", "1863116559"], - [116, 21, 71, "Do not use any type assertions.", "1935232832"], - [124, 25, 53, "Do not use any type assertions.", "3616064645"], - [125, 23, 51, "Do not use any type assertions.", "2715348726"], - [128, 23, 71, "Do not use any type assertions.", "1935232832"] - ], - "public/app/features/manage-dashboards/state/reducers.ts:3417985415": [ - [58, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 10, 21, "Do not use any type assertions.", "2133660528"], - [76, 81, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 81, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 74, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/org/OrgDetailsPage.test.tsx:3835042085": [ - [21, 18, 18, "Do not use any type assertions.", "1715686858"], - [22, 14, 125, "Do not use any type assertions.", "795479886"] - ], - "public/app/features/org/state/actions.test.ts:3238299862": [ - [27, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [49, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/org/state/actions.ts:1356637297": [ - [10, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/org/state/reducers.ts:3134794613": [ - [5, 16, 18, "Do not use any type assertions.", "1715686858"], - [6, 12, 15, "Do not use any type assertions.", "759823388"] - ], - "public/app/features/panel/components/PanelPluginError.tsx:476405098": [ - [34, 68, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/panel/components/PanelRenderer.tsx:4087847384": [ - [13, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [130, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [130, 68, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/panel/components/VizTypePicker/types.ts:1987921561": [ - [4, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/panel/panellinks/linkSuppliers.ts:3654903594": [ - [28, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [128, 14, 24, "Do not use any type assertions.", "981021527"] - ], - "public/app/features/panel/panellinks/link_srv.ts:1146418030": [ - [86, 13, 23, "Do not use any type assertions.", "2282172877"], - [246, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [246, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [247, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [251, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [253, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [272, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [274, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/panel/panellinks/specs/link_srv.test.ts:66288990": [ - [23, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 32, 9, "Do not use any type assertions.", "3692209159"], - [29, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [129, 20, 20, "Do not use any type assertions.", "2655899785"], - [129, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [130, 35, 17, "Do not use any type assertions.", "192014884"], - [130, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [131, 32, 17, "Do not use any type assertions.", "192014884"], - [131, 46, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/panel/state/actions.ts:2393510207": [ - [61, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/panel/state/getAllSuggestions.test.ts:812711870": [ - [19, 28, 64, "Do not use any type assertions.", "1364704506"], - [21, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 24, 188, "Do not use any type assertions.", "968995394"] - ], - "public/app/features/panel/state/reducers.ts:7367154": [ - [10, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/panel/state/utils.test.ts:1496189266": [ - [7, 6, 43, "Do not use any type assertions.", "3014273959"], - [7, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 77, 20, "Do not use any type assertions.", "2350865643"], - [11, 94, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 6, 43, "Do not use any type assertions.", "3014273959"], - [17, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 80, 20, "Do not use any type assertions.", "2350865643"], - [22, 97, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/playlist/PlaylistEditPage.test.tsx:3736413406": [ - [11, 6, 45, "Do not use any type assertions.", "1051848938"], - [11, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 19, 53, "Do not use any type assertions.", "778424295"], - [23, 19, 41, "Do not use any type assertions.", "3698800435"], - [25, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/playlist/PlaylistForm.test.tsx:2574850033": [ - [16, 19, 53, "Do not use any type assertions.", "778424295"], - [16, 19, 41, "Do not use any type assertions.", "3698800435"] - ], - "public/app/features/playlist/PlaylistNewPage.test.tsx:312785433": [ - [19, 6, 45, "Do not use any type assertions.", "1051848938"], - [19, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 19, 48, "Do not use any type assertions.", "3787046835"], - [31, 19, 36, "Do not use any type assertions.", "2729023463"], - [33, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/playlist/PlaylistPage.test.tsx:1746955973": [ - [12, 6, 59, "Do not use any type assertions.", "3685154675"], - [12, 6, 49, "Do not use any type assertions.", "1184085652"] - ], - "public/app/features/playlist/PlaylistSrv.test.ts:1396847903": [ - [20, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 2, 41, "Do not use any type assertions.", "3005722110"], - [25, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 20, 9, "Do not use any type assertions.", "3692209159"], - [43, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [133, 12, 10, "Do not use any type assertions.", "3116693078"], - [133, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/playlist/PlaylistSrv.ts:3601602226": [ - [15, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [82, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 29, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/playlist/StartModal.tsx:2940839879": [ - [24, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/playlist/usePlaylistItems.tsx:1031922501": [ - [17, 15, 25, "Do not use any type assertions.", "333717006"] - ], - "public/app/features/plugins/__mocks__/pluginMocks.ts:1005371841": [ - [35, 9, 14, "Do not use any type assertions.", "233699675"], - [35, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [97, 9, 53, "Do not use any type assertions.", "882079067"] - ], - "public/app/features/plugins/admin/__mocks__/catalogPlugin.mock.ts:2887429061": [ - [3, 15, 13949, "Do not use any type assertions.", "2876504786"] - ], - "public/app/features/plugins/admin/__mocks__/localPlugin.mock.ts:2302368351": [ - [3, 15, 1933, "Do not use any type assertions.", "3134331645"] - ], - "public/app/features/plugins/admin/__mocks__/remotePlugin.mock.ts:2181176489": [ - [5, 15, 1242, "Do not use any type assertions.", "2332697150"] - ], - "public/app/features/plugins/admin/components/AppConfigWrapper.tsx:1637659950": [ - [121, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [125, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/plugins/admin/components/GetStartedWithPlugin/GetStartedWithDataSource.tsx:2115290187": [ - [17, 17, 77, "Do not use any type assertions.", "1939982370"] - ], - "public/app/features/plugins/admin/components/PluginDashboards.tsx:574627587": [ - [32, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/plugins/admin/components/PluginDetailsBody.tsx:3199506957": [ - [45, 35, 25, "Do not use any type assertions.", "3298329852"] - ], - "public/app/features/plugins/admin/components/PluginDetailsHeader.tsx:4233259": [ - [64, 48, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/plugins/admin/components/SearchField.tsx:2053655060": [ - [12, 55, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/plugins/admin/guards.ts:3281195904": [ - [2, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/plugins/admin/helpers.test.ts:2922381373": [ - [114, 37, 80, "Do not use any type assertions.", "1510435013"], - [116, 35, 82, "Do not use any type assertions.", "3449275506"], - [118, 35, 83, "Do not use any type assertions.", "514649711"], - [126, 31, 57, "Do not use any type assertions.", "472410664"], - [127, 34, 54, "Do not use any type assertions.", "683862165"], - [134, 25, 51, "Do not use any type assertions.", "2457260600"], - [135, 28, 52, "Do not use any type assertions.", "963107955"], - [177, 42, 56, "Do not use any type assertions.", "2128061450"] - ], - "public/app/features/plugins/admin/helpers.ts:2721255382": [ - [215, 5, 45, "Do not use any type assertions.", "2083447632"] - ], - "public/app/features/plugins/admin/hooks/useHistory.tsx:3882862818": [ - [4, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/plugins/admin/pages/Browse.test.tsx:1682511418": [ - [35, 11, 44, "Do not use any type assertions.", "3899225422"], - [35, 52, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/plugins/admin/pages/Browse.tsx:663039322": [ - [30, 17, 26, "Do not use any type assertions.", "1305116430"], - [31, 20, 33, "Do not use any type assertions.", "862493476"], - [32, 24, 37, "Do not use any type assertions.", "1746552028"], - [33, 18, 32, "Do not use any type assertions.", "1078919509"], - [57, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/plugins/admin/pages/PluginDetails.test.tsx:186575126": [ - [85, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/plugins/admin/pages/PluginDetails.tsx:4160094062": [ - [43, 18, 32, "Do not use any type assertions.", "4000149916"], - [87, 24, 20, "Do not use any type assertions.", "2850977225"] - ], - "public/app/features/plugins/admin/state/actions.ts:2022804433": [ - [51, 11, 70, "Do not use any type assertions.", "2804802932"], - [75, 13, 40, "Do not use any type assertions.", "30092556"], - [91, 11, 110, "Do not use any type assertions.", "1968165501"], - [106, 16, 33, "Do not use any type assertions.", "3811107685"] - ], - "public/app/features/plugins/admin/state/reducer.ts:4117436501": [ - [26, 16, 534, "Do not use any type assertions.", "3555458827"] - ], - "public/app/features/plugins/admin/state/selectors.ts:345773501": [ - [62, 23, 27, "Do not use any type assertions.", "1285719276"] - ], - "public/app/features/plugins/admin/types.ts:593250396": [ - [236, 10, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/plugins/built_in_plugins.ts:648965312": [ - [79, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/plugins/components/AppRootPage.test.tsx:3268377528": [ - [22, 28, 106, "Do not use any type assertions.", "2241229410"], - [27, 30, 112, "Do not use any type assertions.", "2867980941"], - [68, 90, 12, "Do not use any type assertions.", "3603862904"], - [68, 99, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/plugins/components/AppRootPage.tsx:1453161637": [ - [109, 21, 34, "Do not use any type assertions.", "462520373"] - ], - "public/app/features/plugins/datasource_srv.ts:3339633827": [ - [55, 53, 27, "Do not use any type assertions.", "508490654"], - [55, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 48, 27, "Do not use any type assertions.", "508490654"], - [56, 72, 3, "Unexpected any. Specify a different type.", "193409811"], - [70, 32, 13, "Do not use any type assertions.", "2440813555"], - [70, 50, 39, "Do not use any type assertions.", "539233369"], - [70, 51, 10, "Do not use any type assertions.", "3474434608"], - [70, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [74, 21, 28, "Do not use any type assertions.", "2098258047"], - [74, 22, 10, "Do not use any type assertions.", "3474434608"], - [74, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [115, 47, 13, "Do not use any type assertions.", "2440813555"], - [115, 65, 39, "Do not use any type assertions.", "539233369"], - [115, 66, 10, "Do not use any type assertions.", "3474434608"], - [115, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [145, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [145, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [165, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [165, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [179, 28, 15, "Do not use any type assertions.", "3093929608"], - [179, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [185, 9, 15, "Do not use any type assertions.", "3093929608"], - [185, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [246, 22, 35, "Do not use any type assertions.", "3433914741"], - [248, 23, 26, "Do not use any type assertions.", "2246376386"], - [248, 23, 16, "Do not use any type assertions.", "1996912709"], - [339, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [347, 9, 39, "Do not use any type assertions.", "2354649034"] - ], - "public/app/features/plugins/importPanelPlugin.ts:2544343599": [ - [36, 15, 47, "Do not use any type assertions.", "1478449427"] - ], - "public/app/features/plugins/pluginSettings.ts:4137982556": [ - [16, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/plugins/plugin_loader.ts:3068986743": [ - [38, 18, 19, "Do not use any type assertions.", "1303127269"], - [38, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 82, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 106, 3, "Unexpected any. Specify a different type.", "193409811"], - [153, 82, 3, "Unexpected any. Specify a different type.", "193409811"], - [173, 23, 47, "Do not use any type assertions.", "3309878203"], - [195, 43, 45, "Do not use any type assertions.", "15355460"] - ], - "public/app/features/plugins/tests/datasource_srv.test.ts:2399414445": [ - [10, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 48, 21, "Do not use any type assertions.", "932413114"], - [44, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 12, 43, "Do not use any type assertions.", "1980869032"], - [68, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [120, 25, 21, "Do not use any type assertions.", "96553014"], - [120, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [125, 19, 39, "Do not use any type assertions.", "1152890628"], - [125, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 19, 49, "Do not use any type assertions.", "3630271430"], - [151, 65, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/plugins/tests/plugin_loader.test.ts:1346700974": [ - [3, 1, 13, "Do not use any type assertions.", "615815978"], - [3, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 12, 20, "Do not use any type assertions.", "1774223851"] - ], - "public/app/features/plugins/utils.ts:1653175605": [ - [17, 56, 23, "Do not use any type assertions.", "2718540379"], - [18, 13, 39, "Do not use any type assertions.", "948129095"], - [18, 13, 22, "Do not use any type assertions.", "691582080"], - [21, 13, 31, "Do not use any type assertions.", "3940017965"] - ], - "public/app/features/profile/state/reducers.test.ts:1105044753": [ - [18, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/query/components/QueryEditorRow.test.ts:589354782": [ - [5, 9, 60, "Do not use any type assertions.", "155833034"], - [48, 22, 101, "Do not use any type assertions.", "3734235969"], - [48, 22, 88, "Do not use any type assertions.", "3757401717"] - ], - "public/app/features/query/components/QueryEditorRow.tsx:3534885470": [ - [95, 22, 20, "Do not use any type assertions.", "2923490522"], - [142, 18, 46, "Do not use any type assertions.", "1673417097"], - [142, 18, 21, "Do not use any type assertions.", "1354497810"], - [317, 22, 40, "Do not use any type assertions.", "1350130209"] - ], - "public/app/features/query/components/QueryEditorRowHeader.test.tsx:3344167533": [ - [40, 12, 30, "Do not use any type assertions.", "387902886"], - [40, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [99, 16, 32, "Do not use any type assertions.", "2255106576"] - ], - "public/app/features/query/components/QueryEditorRowHeader.tsx:740676825": [ - [75, 21, 19, "Do not use any type assertions.", "1979047218"], - [75, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/query/components/QueryGroup.tsx:199204106": [ - [246, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/query/components/QueryGroupOptions.tsx:1642191191": [ - [116, 48, 28, "Do not use any type assertions.", "2379647796"] - ], - "public/app/features/query/state/DashboardQueryRunner/AlertStatesWorker.test.ts:2602787036": [ - [10, 6, 59, "Do not use any type assertions.", "3685154675"], - [10, 6, 49, "Do not use any type assertions.", "1184085652"], - [15, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/query/state/DashboardQueryRunner/AnnotationsQueryRunner.test.ts:1022223092": [ - [13, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [49, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [57, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/query/state/DashboardQueryRunner/AnnotationsQueryRunner.ts:193421271": [ - [25, 30, 27, "Do not use any type assertions.", "3324295634"], - [25, 30, 13, "Do not use any type assertions.", "2146830713"] - ], - "public/app/features/query/state/DashboardQueryRunner/AnnotationsWorker.test.ts:4136590395": [ - [25, 29, 9, "Do not use any type assertions.", "3692209159"], - [25, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [90, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [99, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/query/state/DashboardQueryRunner/DashboardQueryRunner.test.ts:1052443115": [ - [15, 6, 59, "Do not use any type assertions.", "3685154675"], - [15, 6, 49, "Do not use any type assertions.", "1184085652"], - [21, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/query/state/DashboardQueryRunner/DashboardQueryRunner.ts:2286850365": [ - [47, 42, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/query/state/DashboardQueryRunner/LegacyAnnotationQueryRunner.test.ts:3861546613": [ - [9, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [62, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/query/state/DashboardQueryRunner/SnapshotWorker.test.ts:798463805": [ - [6, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [66, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/query/state/DashboardQueryRunner/SnapshotWorker.ts:179296958": [ - [28, 6, 23, "Do not use any type assertions.", "4167673244"] - ], - "public/app/features/query/state/DashboardQueryRunner/UnifiedAlertStatesWorker.test.ts:26223570": [ - [16, 6, 59, "Do not use any type assertions.", "3685154675"], - [16, 6, 49, "Do not use any type assertions.", "1184085652"], - [21, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [73, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/query/state/DashboardQueryRunner/testHelpers.ts:2779664026": [ - [7, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 13, 20, "Do not use any type assertions.", "320652245"], - [56, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/query/state/DashboardQueryRunner/utils.ts:2559548018": [ - [12, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 45, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/query/state/PanelQueryRunner.test.ts:2555922331": [ - [20, 6, 42, "Do not use any type assertions.", "3372195270"], - [20, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [97, 21, 9, "Do not use any type assertions.", "3692209159"], - [97, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [102, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [105, 31, 9, "Do not use any type assertions.", "3692209159"], - [105, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [111, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [123, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [282, 33, 50, "Do not use any type assertions.", "1035791784"], - [282, 33, 13, "Do not use any type assertions.", "2146830713"], - [325, 33, 50, "Do not use any type assertions.", "1035791784"], - [325, 33, 13, "Do not use any type assertions.", "2146830713"] - ], - "public/app/features/query/state/PanelQueryRunner.ts:71514562": [ - [108, 39, 118, "Do not use any type assertions.", "2873233307"], - [187, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [234, 5, 14, "Do not use any type assertions.", "4095749936"], - [234, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [280, 20, 46, "Do not use any type assertions.", "1712789723"], - [280, 20, 32, "Do not use any type assertions.", "2220885232"], - [357, 21, 17, "Do not use any type assertions.", "1733699692"], - [357, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [358, 11, 27, "Do not use any type assertions.", "2133479311"], - [360, 38, 20, "Do not use any type assertions.", "340150831"] - ], - "public/app/features/query/state/queryAnalytics.test.ts:991583461": [ - [11, 19, 45, "Do not use any type assertions.", "2764249411"], - [30, 6, 45, "Do not use any type assertions.", "1051848938"], - [30, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 6, 42, "Do not use any type assertions.", "3372195270"], - [38, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 13, 158, "Do not use any type assertions.", "4267586787"] - ], - "public/app/features/query/state/runRequest.test.ts:2460784782": [ - [52, 19, 224, "Do not use any type assertions.", "1646276790"], - [65, 14, 378, "Do not use any type assertions.", "1969424150"], - [117, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 15, 29, "Do not use any type assertions.", "48265649"], - [165, 15, 32, "Do not use any type assertions.", "1792253324"], - [169, 15, 32, "Do not use any type assertions.", "2903332623"], - [173, 15, 32, "Do not use any type assertions.", "2305700943"], - [195, 15, 44, "Do not use any type assertions.", "4144899591"], - [198, 15, 44, "Do not use any type assertions.", "2186739847"], - [201, 15, 44, "Do not use any type assertions.", "1094859076"], - [229, 15, 32, "Do not use any type assertions.", "1792253324"], - [233, 15, 32, "Do not use any type assertions.", "2903332623"], - [277, 30, 32, "Do not use any type assertions.", "2305700943"], - [300, 30, 32, "Do not use any type assertions.", "2305700943"], - [316, 15, 32, "Do not use any type assertions.", "1792253324"], - [320, 15, 76, "Do not use any type assertions.", "3189807266"] - ], - "public/app/features/query/state/runRequest.ts:3551113418": [ - [179, 40, 44, "Do not use any type assertions.", "1044700759"] - ], - "public/app/features/query/state/updateQueries.test.ts:3550635941": [ - [10, 17, 93, "Do not use any type assertions.", "1196156992"], - [18, 16, 85, "Do not use any type assertions.", "254474657"], - [26, 17, 93, "Do not use any type assertions.", "486522171"], - [34, 25, 103, "Do not use any type assertions.", "135469017"], - [174, 35, 377, "Do not use any type assertions.", "3983249137"], - [185, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [187, 35, 375, "Do not use any type assertions.", "3466928263"], - [198, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [218, 8, 27, "Do not use any type assertions.", "1004336880"], - [218, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [219, 9, 27, "Do not use any type assertions.", "1004336880"], - [219, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [221, 8, 27, "Do not use any type assertions.", "799732555"], - [221, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [252, 35, 245, "Do not use any type assertions.", "2589398785"], - [261, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [263, 35, 345, "Do not use any type assertions.", "1792876485"], - [273, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [293, 8, 27, "Do not use any type assertions.", "1004336880"], - [293, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [294, 9, 27, "Do not use any type assertions.", "1004336880"], - [294, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [296, 8, 27, "Do not use any type assertions.", "799732555"], - [296, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [308, 33, 362, "Do not use any type assertions.", "1628214117"], - [319, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [321, 23, 129, "Do not use any type assertions.", "2193252544"], - [373, 33, 244, "Do not use any type assertions.", "3047632847"], - [380, 33, 17, "Do not use any type assertions.", "3596008781"], - [382, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [384, 23, 129, "Do not use any type assertions.", "2193252544"] - ], - "public/app/features/runtime/init.ts:757226221": [ - [12, 3, 13, "Do not use any type assertions.", "538937261"], - [12, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 9, 43, "Do not use any type assertions.", "4109129169"] - ], - "public/app/features/sandbox/TestStuffPage.tsx:3698683147": [ - [134, 30, 29, "Do not use any type assertions.", "3195381622"] - ], - "public/app/features/search/components/DashboardSearch.test.tsx:3747165217": [ - [18, 23, 33, "Do not use any type assertions.", "2540133228"], - [30, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 14, 130, "Do not use any type assertions.", "3429995880"], - [75, 10, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/search/components/MoveToFolderModal.tsx:3435881653": [ - [31, 21, 48, "Do not use any type assertions.", "646093117"], - [31, 93, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 51, 15, "Do not use any type assertions.", "3135191849"] - ], - "public/app/features/search/components/SearchCard.tsx:3237313553": [ - [20, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [116, 37, 32, "Do not use any type assertions.", "1966145380"], - [116, 37, 14, "Do not use any type assertions.", "930482894"] - ], - "public/app/features/search/components/SearchItem.tsx:491011590": [ - [15, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/search/components/SearchResults.tsx:4264592788": [ - [19, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/search/hooks/useDashboardSearch.ts:2034499138": [ - [61, 28, 32, "Do not use any type assertions.", "327142118"] - ], - "public/app/features/search/hooks/useManageDashboards.test.ts:3293235715": [ - [31, 45, 41, "Do not use any type assertions.", "3856094708"], - [31, 45, 15, "Do not use any type assertions.", "363922340"], - [33, 43, 31, "Do not use any type assertions.", "2087413285"], - [33, 43, 13, "Do not use any type assertions.", "2146830713"] - ], - "public/app/features/search/hooks/useSearchKeyboardSelection.ts:877924082": [ - [87, 24, 42, "Do not use any type assertions.", "3335657801"] - ], - "public/app/features/search/hooks/useSearchQuery.ts:1656623565": [ - [26, 25, 60, "Do not use any type assertions.", "1006626118"], - [61, 21, 28, "Do not use any type assertions.", "1547636696"] - ], - "public/app/features/search/page/components/FolderSection.tsx:1368568426": [ - [48, 29, 28, "Do not use any type assertions.", "2423908815"], - [69, 9, 390, "Do not use any type assertions.", "1897005214"], - [144, 27, 22, "Do not use any type assertions.", "3217586069"], - [144, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [173, 24, 11, "Do not use any type assertions.", "3844121546"], - [173, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/search/page/components/ManageActions.test.tsx:1579113217": [ - [35, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [104, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [104, 46, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/search/page/components/ManageActions.tsx:2913473343": [ - [47, 28, 26, "Do not use any type assertions.", "1971436753"] - ], - "public/app/features/search/page/components/MoveToFolderModal.test.tsx:2327665186": [ - [21, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 46, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/search/page/components/MoveToFolderModal.tsx:739519709": [ - [31, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [66, 51, 15, "Do not use any type assertions.", "3135191849"] - ], - "public/app/features/search/page/components/SearchResultsGrid.tsx:994645204": [ - [29, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 16, 28, "Do not use any type assertions.", "1941050010"] - ], - "public/app/features/search/page/components/SearchView.tsx:1246016027": [ - [60, 12, 21, "Do not use any type assertions.", "976337522"], - [61, 14, 26, "Do not use any type assertions.", "2909521803"] - ], - "public/app/features/search/page/components/columns.tsx:3208261512": [ - [33, 20, 70, "Do not use any type assertions.", "512413936"], - [33, 21, 13, "Do not use any type assertions.", "3933930693"], - [33, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 32, 21, "Do not use any type assertions.", "3454251755"], - [48, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [127, 15, 56, "Do not use any type assertions.", "1375039711"] - ], - "public/app/features/search/reducers/dashboardSearch.test.ts:1813679195": [ - [5, 66, 17, "Do not use any type assertions.", "3518965757"], - [5, 78, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 42, 9, "Do not use any type assertions.", "3692209159"], - [8, 48, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/search/reducers/manageDashboards.test.ts:2083873033": [ - [11, 26, 9, "Do not use any type assertions.", "3692209159"], - [11, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 78, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/search/reducers/manageDashboards.ts:4114284001": [ - [81, 11, 24, "Do not use any type assertions.", "1870559034"] - ], - "public/app/features/search/service/bluge.ts:2161463799": [ - [19, 15, 68, "Do not use any type assertions.", "2766474629"], - [32, 17, 128, "Do not use any type assertions.", "437379020"], - [34, 17, 47, "Do not use any type assertions.", "610587748"], - [36, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [69, 13, 68, "Do not use any type assertions.", "2766474629"], - [80, 13, 39, "Do not use any type assertions.", "246018916"], - [82, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 17, 26, "Do not use any type assertions.", "387817714"], - [101, 15, 37, "Do not use any type assertions.", "1203314137"], - [127, 20, 446, "Do not use any type assertions.", "258020179"], - [129, 19, 354, "Do not use any type assertions.", "4208037114"], - [142, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [158, 24, 46, "Do not use any type assertions.", "1967560255"], - [164, 22, 38, "Do not use any type assertions.", "1477056001"] - ], - "public/app/features/search/service/sql.ts:4176137752": [ - [89, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [97, 18, 61, "Do not use any type assertions.", "2014388220"], - [102, 16, 68, "Do not use any type assertions.", "257067967"] - ], - "public/app/features/search/types.ts:2500740669": [ - [58, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [83, 54, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/search/utils.test.ts:3441767255": [ - [15, 48, 17, "Do not use any type assertions.", "3518965757"], - [15, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 37, 15, "Do not use any type assertions.", "4195655835"], - [33, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 37, 15, "Do not use any type assertions.", "4195655835"], - [39, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 37, 15, "Do not use any type assertions.", "4195655835"], - [45, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 40, 14, "Do not use any type assertions.", "1705067515"], - [46, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 37, 15, "Do not use any type assertions.", "4195655835"], - [53, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 37, 15, "Do not use any type assertions.", "4195655835"], - [58, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 37, 15, "Do not use any type assertions.", "4195655835"], - [63, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 40, 14, "Do not use any type assertions.", "1705067515"], - [64, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 37, 15, "Do not use any type assertions.", "4195655835"], - [72, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 40, 15, "Do not use any type assertions.", "4195655835"], - [78, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [103, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [103, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [110, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [110, 64, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/search/utils.ts:3454404257": [ - [86, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [109, 11, 54, "Do not use any type assertions.", "1072049889"], - [128, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [128, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [143, 5, 28, "Do not use any type assertions.", "2423908815"], - [171, 13, 72, "Do not use any type assertions.", "1798742037"], - [173, 13, 77, "Do not use any type assertions.", "414989384"], - [202, 34, 38, "Do not use any type assertions.", "1471143425"], - [222, 11, 24, "Do not use any type assertions.", "2044269175"], - [246, 28, 17, "Do not use any type assertions.", "1811834489"], - [251, 5, 29, "Do not use any type assertions.", "4135357902"] - ], - "public/app/features/serviceaccounts/ServiceAccountProfile.tsx:2326071379": [ - [202, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/serviceaccounts/state/reducers.ts:1598637871": [ - [13, 18, 23, "Do not use any type assertions.", "499357842"], - [15, 10, 14, "Do not use any type assertions.", "2767045528"], - [36, 19, 25, "Do not use any type assertions.", "1122467828"] - ], - "public/app/features/teams/CreateTeam.test.tsx:136903941": [ - [30, 14, 34, "Do not use any type assertions.", "463003776"] - ], - "public/app/features/teams/TeamGroupSync.test.tsx:2647720693": [ - [12, 12, 17, "Do not use any type assertions.", "2242876437"] - ], - "public/app/features/teams/TeamGroupSync.tsx:187124828": [ - [59, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/teams/TeamList.test.tsx:854193970": [ - [21, 14, 123, "Do not use any type assertions.", "695951401"], - [29, 11, 12, "Do not use any type assertions.", "1079483306"], - [39, 18, 59, "Do not use any type assertions.", "25768610"], - [50, 19, 30, "Do not use any type assertions.", "3387094397"], - [82, 24, 77, "Do not use any type assertions.", "361803129"], - [99, 24, 77, "Do not use any type assertions.", "1295202722"] - ], - "public/app/features/teams/TeamMemberRow.test.tsx:1649328210": [ - [23, 19, 35, "Do not use any type assertions.", "1218199909"] - ], - "public/app/features/teams/TeamMemberRow.tsx:4111921395": [ - [43, 18, 20, "Do not use any type assertions.", "3089389535"] - ], - "public/app/features/teams/TeamMembers.test.tsx:4089428239": [ - [16, 13, 18, "Do not use any type assertions.", "2776323642"], - [22, 18, 101, "Do not use any type assertions.", "3599690898"], - [32, 19, 33, "Do not use any type assertions.", "3637445436"], - [67, 18, 24, "Do not use any type assertions.", "709996747"] - ], - "public/app/features/teams/TeamMembers.tsx:4139991775": [ - [19, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/teams/TeamPages.test.tsx:3990420214": [ - [13, 6, 70, "Do not use any type assertions.", "2101742555"], - [13, 6, 60, "Do not use any type assertions.", "3159223420"], - [25, 13, 86, "Do not use any type assertions.", "2945747797"], - [30, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 14, 14, "Do not use any type assertions.", "3112983303"], - [37, 10, 10, "Do not use any type assertions.", "1584692172"], - [38, 13, 18, "Do not use any type assertions.", "2776323642"], - [41, 18, 88, "Do not use any type assertions.", "2247670218"], - [108, 22, 103, "Do not use any type assertions.", "1629066687"], - [128, 22, 104, "Do not use any type assertions.", "1654130122"] - ], - "public/app/features/teams/TeamPages.tsx:3881385980": [ - [52, 43, 18, "Do not use any type assertions.", "373851894"] - ], - "public/app/features/teams/TeamSettings.test.tsx:2043271249": [ - [21, 19, 25, "Do not use any type assertions.", "3698274516"], - [21, 41, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/teams/state/reducers.ts:1856799550": [ - [27, 8, 10, "Do not use any type assertions.", "1584692172"], - [28, 11, 18, "Do not use any type assertions.", "2776323642"], - [29, 10, 17, "Do not use any type assertions.", "2242876437"] - ], - "public/app/features/teams/state/selectors.test.ts:4215831928": [ - [49, 14, 10, "Do not use any type assertions.", "1584692172"], - [52, 16, 17, "Do not use any type assertions.", "2242876437"], - [67, 18, 101, "Do not use any type assertions.", "3599690898"], - [92, 22, 116, "Do not use any type assertions.", "591810489"], - [107, 22, 116, "Do not use any type assertions.", "2211298791"], - [123, 22, 117, "Do not use any type assertions.", "1169409170"], - [138, 22, 117, "Do not use any type assertions.", "1169409170"] - ], - "public/app/features/teams/state/selectors.ts:1075454943": [ - [9, 57, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/templating/formatRegistry.ts:3091945650": [ - [9, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [101, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [231, 25, 15, "Do not use any type assertions.", "142856647"], - [231, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [280, 34, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/templating/template_srv.test.ts:712775615": [ - [16, 2, 73, "Do not use any type assertions.", "1947901513"], - [16, 2, 39, "Do not use any type assertions.", "2027888769"], - [17, 2, 73, "Do not use any type assertions.", "154812962"], - [17, 2, 39, "Do not use any type assertions.", "1939022186"], - [22, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [614, 46, 98, "Do not use any type assertions.", "3603294877"], - [652, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [653, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [668, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [669, 63, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/templating/template_srv.ts:1268619359": [ - [15, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [120, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [120, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [120, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [165, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [174, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [223, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [256, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [333, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [355, 11, 71, "Do not use any type assertions.", "3750024558"] - ], - "public/app/features/transformers/FilterByValueTransformer/ValueMatchers/BasicMatcherEditor.tsx:2634989640": [ - [8, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [101, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/FilterByValueTransformer/ValueMatchers/NoopMatcherEditor.tsx:1523778927": [ - [6, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 75, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/FilterByValueTransformer/ValueMatchers/RangeMatcherEditor.tsx:2610382331": [ - [10, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/FilterByValueTransformer/ValueMatchers/types.ts:979585862": [ - [11, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 44, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/FilterByValueTransformer/ValueMatchers/utils.ts:4011776490": [ - [4, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/FilterByValueTransformer/ValueMatchers/valueMatchersUI.ts:2375984245": [ - [7, 71, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/calculateHeatmap/editor/AxisEditor.tsx:4193676986": [ - [28, 86, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/calculateHeatmap/editor/helper.ts:2898656130": [ - [10, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/calculateHeatmap/heatmap.ts:2221092231": [ - [65, 9, 52, "Do not use any type assertions.", "3480700880"], - [306, 63, 29, "Do not use any type assertions.", "255738422"], - [306, 89, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/configFromQuery/ConfigFromQueryTransformerEditor.test.tsx:1060905279": [ - [44, 29, 21, "Do not use any type assertions.", "1548027068"] - ], - "public/app/features/transformers/configFromQuery/ConfigFromQueryTransformerEditor.tsx:736568191": [ - [43, 48, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/editors/CalculateFieldTransformerEditor.tsx:1870559604": [ - [190, 36, 21, "Do not use any type assertions.", "1612649439"], - [270, 16, 29, "Do not use any type assertions.", "2299378802"] - ], - "public/app/features/transformers/editors/ConvertFieldTypeTransformerEditor.tsx:757932542": [ - [18, 100, 37, "Do not use any type assertions.", "1894184936"], - [20, 5, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/editors/GroupByTransformerEditor.tsx:2044691264": [ - [107, 56, 20, "Do not use any type assertions.", "3639891535"] - ], - "public/app/features/transformers/editors/OrganizeFieldsTransformerEditor.tsx:3938678708": [ - [196, 5, 28, "Do not use any type assertions.", "426490724"] - ], - "public/app/features/transformers/editors/ReduceTransformerEditor.tsx:3199830191": [ - [86, 26, 20, "Do not use any type assertions.", "3639891535"] - ], - "public/app/features/transformers/editors/SortByTransformerEditor.tsx:4022184820": [ - [23, 55, 17, "Do not use any type assertions.", "2570436050"] - ], - "public/app/features/transformers/extractFields/ExtractFieldsTransformerEditor.tsx:931500239": [ - [62, 18, 30, "Do not use any type assertions.", "3580691047"], - [62, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [69, 19, 24, "Do not use any type assertions.", "2341151795"], - [69, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [70, 21, 21, "Do not use any type assertions.", "330442140"], - [70, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/extractFields/extractFields.test.ts:704241389": [ - [21, 9, 9, "Do not use any type assertions.", "3692209159"], - [21, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/extractFields/extractFields.ts:865300072": [ - [54, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 11, 178, "Do not use any type assertions.", "1537492479"] - ], - "public/app/features/transformers/extractFields/fieldExtractors.ts:3955338980": [ - [9, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/fieldToConfigMapping/FieldToConfigMappingEditor.test.tsx:1072197618": [ - [50, 29, 21, "Do not use any type assertions.", "1548027068"], - [59, 41, 21, "Do not use any type assertions.", "1548027068"], - [85, 29, 22, "Do not use any type assertions.", "3205041286"] - ], - "public/app/features/transformers/fieldToConfigMapping/FieldToConfigMappingEditor.tsx:1861568786": [ - [26, 22, 113, "Do not use any type assertions.", "2459082956"], - [89, 70, 21, "Do not use any type assertions.", "1612649439"] - ], - "public/app/features/transformers/fieldToConfigMapping/fieldToConfigMapping.ts:3425736734": [ - [63, 7, 13, "Do not use any type assertions.", "268797995"], - [63, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [75, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [80, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [80, 108, 3, "Unexpected any. Specify a different type.", "193409811"], - [137, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [249, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/lookupGazetteer/FieldLookupTransformerEditor.tsx:1140424967": [ - [29, 100, 26, "Do not use any type assertions.", "51717362"], - [31, 5, 3, "Unexpected any. Specify a different type.", "193409811"], - [65, 18, 30, "Do not use any type assertions.", "3580691047"], - [65, 45, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/lookupGazetteer/fieldLookup.ts:177333657": [ - [56, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/prepareTimeSeries/prepareTimeSeries.test.ts:1872325972": [ - [325, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [329, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/prepareTimeSeries/prepareTimeSeries.ts:3019454404": [ - [206, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [251, 40, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/rowsToFields/RowsToFieldsTransformerEditor.test.tsx:2876920155": [ - [41, 29, 21, "Do not use any type assertions.", "1548027068"], - [55, 29, 21, "Do not use any type assertions.", "1548027068"] - ], - "public/app/features/transformers/spatial/SpatialTransformerEditor.tsx:514464421": [ - [92, 20, 45, "Do not use any type assertions.", "2416151625"], - [104, 20, 53, "Do not use any type assertions.", "2013910852"] - ], - "public/app/features/transformers/spatial/optionsHelper.tsx:1635431172": [ - [9, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 40, 20, "Do not use any type assertions.", "481937809"], - [35, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [47, 13, 7, "Do not use any type assertions.", "3399135973"], - [58, 9, 12, "Do not use any type assertions.", "817964441"] - ], - "public/app/features/transformers/spatial/utils.ts:712261744": [ - [43, 12, 12, "Do not use any type assertions.", "2750887158"] - ], - "public/app/features/transformers/standardTransformers.ts:2422651868": [ - [27, 73, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/transformers/utils.ts:4096765926": [ - [21, 9, 29, "Do not use any type assertions.", "1090557251"] - ], - "public/app/features/users/UsersActionBar.tsx:1795710611": [ - [66, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/users/UsersListPage.test.tsx:2518052139": [ - [22, 14, 119, "Do not use any type assertions.", "1781051572"], - [30, 11, 15, "Do not use any type assertions.", "2789568508"], - [31, 14, 15, "Do not use any type assertions.", "3505843099"], - [47, 19, 35, "Do not use any type assertions.", "786004689"] - ], - "public/app/features/users/UsersTable.test.tsx:263958312": [ - [19, 11, 15, "Do not use any type assertions.", "2789568508"] - ], - "public/app/features/users/__mocks__/userMocks.ts:530669812": [ - [19, 9, 18, "Do not use any type assertions.", "2912419768"], - [23, 9, 230, "Do not use any type assertions.", "3882008934"], - [31, 10, 18, "Do not use any type assertions.", "372227062"] - ], - "public/app/features/users/state/reducers.ts:4239682763": [ - [6, 9, 15, "Do not use any type assertions.", "2789568508"] - ], - "public/app/features/variables/adapters.ts:1405850906": [ - [24, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 61, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/adhoc/actions.test.ts:3228657148": [ - [194, 52, 14, "Do not use any type assertions.", "3854427458"], - [330, 52, 14, "Do not use any type assertions.", "3854427458"], - [360, 52, 14, "Do not use any type assertions.", "3854427458"], - [509, 9, 160, "Do not use any type assertions.", "3244710120"], - [511, 10, 57, "Do not use any type assertions.", "3447995104"] - ], - "public/app/features/variables/adhoc/actions.ts:3930757511": [ - [184, 9, 142, "Do not use any type assertions.", "57046962"] - ], - "public/app/features/variables/adhoc/picker/AdHocFilter.test.tsx:2265755539": [ - [67, 19, 217, "Do not use any type assertions.", "3181336821"], - [78, 7, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/adhoc/picker/AdHocFilter.tsx:460938374": [ - [18, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/adhoc/picker/AdHocFilterBuilder.tsx:2686169032": [ - [12, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/adhoc/picker/AdHocFilterKey.tsx:317082244": [ - [11, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/adhoc/picker/AdHocFilterRenderer.tsx:1320768127": [ - [16, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/adhoc/reducer.test.ts:531962865": [ - [25, 16, 147, "Do not use any type assertions.", "2892790792"], - [45, 16, 246, "Do not use any type assertions.", "3920845434"], - [69, 16, 147, "Do not use any type assertions.", "2892790792"], - [90, 16, 147, "Do not use any type assertions.", "771746056"], - [110, 16, 118, "Do not use any type assertions.", "2442568355"], - [112, 21, 27, "Do not use any type assertions.", "37558224"], - [132, 16, 248, "Do not use any type assertions.", "2892427802"], - [157, 16, 248, "Do not use any type assertions.", "3562752889"], - [180, 16, 250, "Do not use any type assertions.", "601750330"], - [202, 16, 250, "Do not use any type assertions.", "601750330"] - ], - "public/app/features/variables/adhoc/urlParser.test.ts:2987452506": [ - [65, 16, 141, "Do not use any type assertions.", "2769250046"], - [65, 16, 118, "Do not use any type assertions.", "510137579"], - [83, 16, 130, "Do not use any type assertions.", "1366946792"], - [83, 16, 107, "Do not use any type assertions.", "2936397373"], - [101, 16, 131, "Do not use any type assertions.", "144318462"], - [101, 16, 108, "Do not use any type assertions.", "3807309291"] - ], - "public/app/features/variables/adhoc/urlParser.ts:3660579098": [ - [11, 19, 14, "Do not use any type assertions.", "2197926124"], - [11, 28, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/constant/reducer.test.ts:3405783846": [ - [25, 16, 234, "Do not use any type assertions.", "2319981266"], - [50, 16, 248, "Do not use any type assertions.", "1014063058"] - ], - "public/app/features/variables/constant/reducer.ts:4270498646": [ - [11, 11, 20, "Do not use any type assertions.", "3452872500"] - ], - "public/app/features/variables/custom/reducer.test.ts:134441915": [ - [26, 16, 591, "Do not use any type assertions.", "3370154250"], - [66, 16, 595, "Do not use any type assertions.", "269111563"], - [106, 16, 591, "Do not use any type assertions.", "3370154250"], - [146, 16, 591, "Do not use any type assertions.", "3370154250"], - [186, 16, 675, "Do not use any type assertions.", "4190996907"], - [226, 16, 643, "Do not use any type assertions.", "1621992171"], - [266, 16, 741, "Do not use any type assertions.", "4040164424"] - ], - "public/app/features/variables/custom/reducer.ts:368684944": [ - [15, 11, 20, "Do not use any type assertions.", "3452872500"] - ], - "public/app/features/variables/datasource/actions.test.ts:1988531225": [ - [73, 25, 30, "Do not use any type assertions.", "3368833770"], - [73, 25, 20, "Do not use any type assertions.", "3781735909"] - ], - "public/app/features/variables/datasource/actions.ts:3480019637": [ - [50, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/datasource/reducer.test.ts:3810268406": [ - [42, 19, 122, "Do not use any type assertions.", "1128427296"], - [42, 19, 95, "Do not use any type assertions.", "1445464854"], - [68, 17, 289, "Do not use any type assertions.", "1163370834"], - [68, 17, 262, "Do not use any type assertions.", "1371708324"], - [96, 17, 164, "Do not use any type assertions.", "2083564038"], - [96, 17, 137, "Do not use any type assertions.", "1045964400"], - [121, 17, 190, "Do not use any type assertions.", "862727142"], - [121, 17, 163, "Do not use any type assertions.", "2642551696"], - [146, 17, 289, "Do not use any type assertions.", "1163370834"], - [146, 17, 262, "Do not use any type assertions.", "1371708324"] - ], - "public/app/features/variables/datasource/reducer.ts:4101214290": [ - [12, 11, 20, "Do not use any type assertions.", "3452872500"] - ], - "public/app/features/variables/editor/VariableEditorContainer.tsx:2086173777": [ - [46, 67, 30, "Do not use any type assertions.", "2243881570"], - [46, 67, 20, "Do not use any type assertions.", "3781735909"] - ], - "public/app/features/variables/editor/VariableEditorEditor.tsx:3866722628": [ - [40, 91, 3, "Unexpected any. Specify a different type.", "193409811"], - [65, 85, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/editor/VariableSelectField.tsx:935876156": [ - [27, 46, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/editor/VariableTextAreaField.tsx:3451037072": [ - [32, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 43, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/editor/getVariableQueryEditor.test.tsx:1338740002": [ - [9, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/editor/getVariableQueryEditor.tsx:3545974257": [ - [57, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/editor/reducer.ts:565219552": [ - [73, 60, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/editor/selectors.test.ts:3899398841": [ - [31, 14, 30, "Do not use any type assertions.", "2442266942"], - [31, 14, 13, "Do not use any type assertions.", "2146830713"] - ], - "public/app/features/variables/editor/types.ts:1106037170": [ - [4, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/getAllVariableValuesForUrl.test.ts:2013865818": [ - [33, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/getAllVariableValuesForUrl.ts:2415462754": [ - [21, 90, 15, "Do not use any type assertions.", "142856647"], - [21, 102, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/guard.test.ts:3889005067": [ - [17, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [49, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [74, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [83, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [103, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [113, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [122, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [132, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [143, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [144, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [152, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [153, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [163, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [164, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [172, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [173, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [185, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [186, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [196, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [197, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [207, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [208, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [218, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [219, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [227, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [228, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [236, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [237, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/guard.ts:1400388470": [ - [42, 20, 33, "Do not use any type assertions.", "3312280730"], - [59, 23, 28, "Do not use any type assertions.", "2663324312"], - [59, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [75, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [75, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [91, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [138, 26, 80, "Do not use any type assertions.", "2228169072"], - [148, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [157, 26, 78, "Do not use any type assertions.", "1260075160"] - ], - "public/app/features/variables/inspect/NetworkGraph.tsx:2419162972": [ - [20, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [80, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [87, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [87, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [88, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/inspect/utils.test.ts:1490985138": [ - [346, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [1208, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [1707, 28, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/inspect/utils.ts:3863933569": [ - [62, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [116, 87, 3, "Unexpected any. Specify a different type.", "193409811"], - [116, 102, 3, "Unexpected any. Specify a different type.", "193409811"], - [141, 5, 25, "Do not use any type assertions.", "3262886033"], - [141, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [162, 5, 25, "Do not use any type assertions.", "3262886033"], - [162, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [177, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [238, 23, 74, "Do not use any type assertions.", "631899588"], - [238, 23, 57, "Do not use any type assertions.", "946806687"], - [344, 82, 3, "Unexpected any. Specify a different type.", "193409811"], - [388, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [389, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [397, 9, 26, "Do not use any type assertions.", "1510529836"], - [397, 9, 16, "Do not use any type assertions.", "2820774109"] - ], - "public/app/features/variables/interval/actions.test.ts:3966329916": [ - [62, 26, 264, "Do not use any type assertions.", "131381399"], - [62, 26, 253, "Do not use any type assertions.", "3294972071"], - [154, 19, 294, "Do not use any type assertions.", "2131058214"], - [154, 19, 283, "Do not use any type assertions.", "1881118838"], - [165, 23, 82, "Do not use any type assertions.", "1627890605"], - [165, 23, 67, "Do not use any type assertions.", "1552916760"], - [206, 19, 77, "Do not use any type assertions.", "4249574421"], - [206, 19, 66, "Do not use any type assertions.", "3164490597"], - [210, 23, 95, "Do not use any type assertions.", "3057227568"], - [210, 23, 80, "Do not use any type assertions.", "3466408677"] - ], - "public/app/features/variables/interval/reducer.test.ts:1904364691": [ - [26, 17, 452, "Do not use any type assertions.", "1039353885"], - [54, 17, 531, "Do not use any type assertions.", "90477989"], - [83, 17, 383, "Do not use any type assertions.", "2247774352"], - [109, 17, 383, "Do not use any type assertions.", "2360119824"] - ], - "public/app/features/variables/interval/reducer.ts:3679061500": [ - [16, 11, 20, "Do not use any type assertions.", "3452872500"] - ], - "public/app/features/variables/pickers/OptionsPicker/OptionPicker.test.tsx:2807633419": [ - [51, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/pickers/OptionsPicker/actions.test.ts:1831073775": [ - [400, 15, 14, "Do not use any type assertions.", "241960896"], - [400, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/pickers/OptionsPicker/actions.ts:4177332433": [ - [79, 74, 3, "Unexpected any. Specify a different type.", "193409811"], - [105, 61, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/pickers/OptionsPicker/reducer.test.ts:2992271542": [ - [50, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [52, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [54, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [55, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [60, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 69, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 83, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [253, 22, 310, "Do not use any type assertions.", "68712222"], - [285, 22, 245, "Do not use any type assertions.", "3886899767"], - [311, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [319, 22, 85, "Do not use any type assertions.", "3209524259"], - [545, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [800, 22, 187, "Do not use any type assertions.", "1956295037"] - ], - "public/app/features/variables/pickers/shared/VariableInput.tsx:3968464171": [ - [14, 28, 30, "Do not use any type assertions.", "1470839794"] - ], - "public/app/features/variables/query/QueryVariableEditor.test.tsx:146684894": [ - [21, 16, 30, "Do not use any type assertions.", "2442266942"], - [21, 16, 13, "Do not use any type assertions.", "2146830713"], - [33, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/query/QueryVariableEditor.tsx:892987459": [ - [89, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [95, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/query/VariableQueryRunner.test.ts:3796986733": [ - [18, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 23, 100, "Do not use any type assertions.", "2705788053"], - [71, 23, 84, "Do not use any type assertions.", "3488260142"] - ], - "public/app/features/variables/query/VariableQueryRunner.ts:134140706": [ - [36, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [172, 23, 58, "Do not use any type assertions.", "2455520301"] - ], - "public/app/features/variables/query/actions.test.tsx:1519580216": [ - [47, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 17, 26, "Do not use any type assertions.", "51135180"], - [63, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 15, 96, "Do not use any type assertions.", "206775112"], - [78, 15, 85, "Do not use any type assertions.", "2028521368"], - [282, 54, 25, "Do not use any type assertions.", "71482403"], - [282, 54, 15, "Do not use any type assertions.", "363922340"], - [366, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [728, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [729, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/query/actions.ts:1209513695": [ - [108, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [145, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [167, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [167, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [188, 5, 25, "Do not use any type assertions.", "3262886033"], - [188, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/query/operators.test.ts:4203075611": [ - [132, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [148, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/query/operators.ts:950346436": [ - [140, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [149, 20, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/query/queryRunners.test.ts:4164140528": [ - [10, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [147, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [148, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [153, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [158, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [159, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [224, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [226, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [231, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [232, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [272, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [274, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [279, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [280, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [330, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/query/queryRunners.ts:2619350568": [ - [85, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/query/reducer.test.ts:2683949100": [ - [33, 15, 297, "Do not use any type assertions.", "870412809"], - [33, 15, 275, "Do not use any type assertions.", "2289094168"], - [57, 15, 232, "Do not use any type assertions.", "856245141"], - [57, 15, 210, "Do not use any type assertions.", "730423940"], - [71, 32, 23, "Do not use any type assertions.", "3708401277"], - [79, 15, 152, "Do not use any type assertions.", "3814787877"], - [79, 15, 130, "Do not use any type assertions.", "847409396"], - [90, 32, 23, "Do not use any type assertions.", "3708401277"], - [98, 15, 161, "Do not use any type assertions.", "2826271963"], - [98, 15, 139, "Do not use any type assertions.", "3023155146"], - [119, 15, 239, "Do not use any type assertions.", "3216676945"], - [119, 15, 217, "Do not use any type assertions.", "218790208"], - [143, 15, 145, "Do not use any type assertions.", "2045537569"], - [143, 15, 123, "Do not use any type assertions.", "1230177264"], - [164, 15, 154, "Do not use any type assertions.", "2729983415"], - [164, 15, 132, "Do not use any type assertions.", "3717778278"], - [183, 15, 154, "Do not use any type assertions.", "2729983415"], - [183, 15, 132, "Do not use any type assertions.", "3717778278"], - [202, 15, 155, "Do not use any type assertions.", "1202875329"], - [202, 15, 133, "Do not use any type assertions.", "2833874128"], - [221, 15, 153, "Do not use any type assertions.", "3540111265"], - [221, 15, 131, "Do not use any type assertions.", "1593542256"], - [240, 15, 157, "Do not use any type assertions.", "1514620833"], - [240, 15, 135, "Do not use any type assertions.", "630652528"], - [259, 15, 161, "Do not use any type assertions.", "2826271963"], - [259, 15, 139, "Do not use any type assertions.", "3023155146"] - ], - "public/app/features/variables/query/reducer.ts:1519355365": [ - [27, 11, 20, "Do not use any type assertions.", "3452872500"], - [31, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [83, 100, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/query/variableQueryObserver.test.ts:366274519": [ - [7, 69, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/query/variableQueryObserver.ts:111774339": [ - [7, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/shared/formatVariable.ts:3534452148": [ - [20, 19, 31, "Do not use any type assertions.", "1357742341"], - [21, 12, 31, "Do not use any type assertions.", "1357742341"] - ], - "public/app/features/variables/shared/testing/datasourceVariableBuilder.ts:1612633515": [ - [10, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/shared/testing/helpers.ts:1339005903": [ - [10, 14, 35, "Do not use any type assertions.", "2450797454"], - [10, 14, 13, "Do not use any type assertions.", "2146830713"] - ], - "public/app/features/variables/shared/testing/optionsVariableBuilder.ts:3284087184": [ - [18, 28, 40, "Do not use any type assertions.", "2173362196"], - [18, 28, 20, "Do not use any type assertions.", "3781735909"], - [31, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/shared/testing/variableBuilder.ts:1198300225": [ - [9, 20, 44, "Do not use any type assertions.", "351425906"] - ], - "public/app/features/variables/state/actions.test.ts:3307157248": [ - [77, 25, 61, "Do not use any type assertions.", "2248441288"], - [80, 5, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [157, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [177, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [179, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [181, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [268, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [270, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [497, 25, 362, "Do not use any type assertions.", "3906003862"], - [543, 25, 362, "Do not use any type assertions.", "3906003862"], - [754, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/state/actions.ts:443730774": [ - [366, 34, 30, "Do not use any type assertions.", "4095267826"], - [489, 48, 31, "Do not use any type assertions.", "1451241646"], - [489, 48, 13, "Do not use any type assertions.", "2146830713"], - [502, 15, 40, "Do not use any type assertions.", "1232636249"], - [503, 14, 39, "Do not use any type assertions.", "1509311279"], - [601, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [635, 37, 366, "Do not use any type assertions.", "877038451"], - [637, 36, 41, "Do not use any type assertions.", "3015110120"], - [637, 36, 19, "Do not use any type assertions.", "3095385657"], - [678, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [731, 90, 3, "Unexpected any. Specify a different type.", "193409811"], - [749, 7, 17, "Do not use any type assertions.", "2271871980"], - [875, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [949, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/state/initVariableTransaction.test.ts:1177248976": [ - [55, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [97, 25, 35, "Do not use any type assertions.", "1540321028"], - [97, 25, 18, "Do not use any type assertions.", "2747901642"] - ], - "public/app/features/variables/state/keyedVariablesReducer.ts:3229378394": [ - [17, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 65, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/state/migrateVariablesDatasourceNameToRef.test.ts:1577481970": [ - [33, 25, 35, "Do not use any type assertions.", "1540321028"], - [33, 25, 18, "Do not use any type assertions.", "2747901642"], - [69, 25, 35, "Do not use any type assertions.", "1540321028"], - [69, 25, 18, "Do not use any type assertions.", "2747901642"] - ], - "public/app/features/variables/state/onTimeRangeUpdated.test.ts:1922228154": [ - [61, 26, 66, "Do not use any type assertions.", "2505932284"], - [61, 26, 51, "Do not use any type assertions.", "1748196521"], - [67, 25, 65, "Do not use any type assertions.", "1670117745"], - [67, 25, 47, "Do not use any type assertions.", "3235618000"], - [77, 25, 114, "Do not use any type assertions.", "1953052055"], - [77, 25, 95, "Do not use any type assertions.", "4074295433"] - ], - "public/app/features/variables/state/processVariable.test.ts:2808266058": [ - [32, 17, 799, "Do not use any type assertions.", "3017770141"], - [62, 5, 3, "Unexpected any. Specify a different type.", "193409811"], - [101, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/state/reducers.test.ts:2308123670": [ - [13, 6, 33, "Do not use any type assertions.", "634190905"], - [13, 6, 17, "Do not use any type assertions.", "2459783733"], - [18, 16, 24, "Do not use any type assertions.", "2284833714"], - [22, 10, 11, "Do not use any type assertions.", "319541530"], - [22, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 10, 11, "Do not use any type assertions.", "319541530"], - [23, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [112, 69, 33, "Do not use any type assertions.", "634190905"], - [112, 69, 17, "Do not use any type assertions.", "2459783733"], - [117, 45, 33, "Do not use any type assertions.", "634190905"], - [117, 45, 17, "Do not use any type assertions.", "2459783733"] - ], - "public/app/features/variables/state/selectors.ts:3717531203": [ - [21, 11, 25, "Do not use any type assertions.", "1350629667"], - [21, 11, 20, "Do not use any type assertions.", "3781735909"], - [24, 9, 33, "Do not use any type assertions.", "1290721329"], - [112, 9, 18, "Do not use any type assertions.", "432529700"] - ], - "public/app/features/variables/state/sharedReducer.test.ts:200345081": [ - [37, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [49, 14, 44, "Do not use any type assertions.", "1480060850"], - [49, 14, 28, "Do not use any type assertions.", "3783339838"], - [50, 17, 31, "Do not use any type assertions.", "1451241646"], - [50, 17, 13, "Do not use any type assertions.", "2146830713"], - [66, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [363, 15, 373, "Do not use any type assertions.", "1960946281"], - [363, 15, 351, "Do not use any type assertions.", "3132689976"], - [393, 15, 370, "Do not use any type assertions.", "1519279112"], - [393, 15, 348, "Do not use any type assertions.", "1961351833"], - [423, 15, 369, "Do not use any type assertions.", "496196576"], - [423, 15, 347, "Do not use any type assertions.", "1372203057"], - [449, 15, 147, "Do not use any type assertions.", "2396123466"], - [449, 15, 125, "Do not use any type assertions.", "3865835995"], - [471, 15, 144, "Do not use any type assertions.", "1274342264"], - [471, 15, 122, "Do not use any type assertions.", "3540771753"], - [493, 15, 141, "Do not use any type assertions.", "2660489630"], - [493, 15, 119, "Do not use any type assertions.", "2512539407"], - [512, 15, 150, "Do not use any type assertions.", "378381969"], - [512, 15, 128, "Do not use any type assertions.", "3867424384"], - [566, 22, 26, "Do not use any type assertions.", "3526541207"] - ], - "public/app/features/variables/state/sharedReducer.ts:2619654634": [ - [53, 96, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 75, 3, "Unexpected any. Specify a different type.", "193409811"], - [154, 7, 36, "Do not use any type assertions.", "1319912169"], - [154, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/state/templateVarsChangedInUrl.test.ts:1110987658": [ - [106, 25, 30, "Do not use any type assertions.", "2475764786"], - [106, 25, 16, "Do not use any type assertions.", "4025864488"] - ], - "public/app/features/variables/state/transactionReducer.test.ts:2615067946": [ - [73, 51, 9, "Do not use any type assertions.", "3692209159"], - [73, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 51, 9, "Do not use any type assertions.", "3692209159"], - [85, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [97, 51, 9, "Do not use any type assertions.", "3692209159"], - [97, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [109, 60, 9, "Do not use any type assertions.", "3692209159"], - [109, 66, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/state/types.ts:4274199150": [ - [19, 43, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/state/upgradeLegacyQueries.test.ts:1187013225": [ - [13, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/state/variablesReducer.ts:712367753": [ - [21, 7, 35, "Do not use any type assertions.", "1795819022"] - ], - "public/app/features/variables/system/adapter.ts:3253438213": [ - [9, 78, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 12, 74, "Do not use any type assertions.", "1983337464"], - [23, 12, 15, "Do not use any type assertions.", "363922340"], - [23, 80, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 12, 74, "Do not use any type assertions.", "2121115967"], - [24, 12, 15, "Do not use any type assertions.", "363922340"], - [24, 80, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/textbox/reducer.test.ts:261547066": [ - [25, 16, 357, "Do not use any type assertions.", "587262851"], - [55, 16, 385, "Do not use any type assertions.", "1609241603"] - ], - "public/app/features/variables/textbox/reducer.ts:3760710313": [ - [10, 11, 20, "Do not use any type assertions.", "3452872500"] - ], - "public/app/features/variables/types.ts:2730024471": [ - [82, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [140, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [148, 8, 29, "Do not use any type assertions.", "3580926259"], - [148, 8, 13, "Do not use any type assertions.", "3075929919"], - [159, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [160, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [161, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [168, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [168, 100, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/features/variables/utils.ts:724230159": [ - [58, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [74, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [108, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [161, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [174, 24, 30, "Do not use any type assertions.", "4095267826"], - [197, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [197, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [254, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [254, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [294, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [305, 45, 9, "Do not use any type assertions.", "744351187"] - ], - "public/app/index.ts:2251708726": [ - [12, 5, 13, "Do not use any type assertions.", "538937261"], - [12, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 23, 13, "Do not use any type assertions.", "538937261"], - [13, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/alertmanager/ConfigEditor.tsx:326563002": [ - [46, 36, 41, "Do not use any type assertions.", "3906591734"] - ], - "public/app/plugins/datasource/alertmanager/DataSource.ts:510874528": [ - [40, 47, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/alertmanager/types.ts:3144646338": [ - [68, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [69, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [80, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [82, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [83, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [86, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [88, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloud-monitoring/CloudMonitoringMetricFindQuery.ts:3261769082": [ - [60, 12, 35, "Do not use any type assertions.", "410385423"], - [153, 41, 34, "Do not use any type assertions.", "4179746105"], - [153, 77, 35, "Do not use any type assertions.", "2188369578"], - [176, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloud-monitoring/__mocks__/cloudMonitoringDatasource.ts:2957361670": [ - [11, 21, 24, "Do not use any type assertions.", "2915694103"] - ], - "public/app/plugins/datasource/cloud-monitoring/annotationSupport.ts:2641085241": [ - [19, 3, 62, "Do not use any type assertions.", "833569015"], - [20, 3, 62, "Do not use any type assertions.", "833569015"] - ], - "public/app/plugins/datasource/cloud-monitoring/components/Aggregation.test.tsx:3822406835": [ - [15, 20, 51, "Do not use any type assertions.", "3502441618"], - [18, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 26, 98, "Do not use any type assertions.", "4220054106"], - [37, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 28, 35, "Do not use any type assertions.", "2010798737"], - [42, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [55, 26, 102, "Do not use any type assertions.", "844950435"], - [58, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 28, 35, "Do not use any type assertions.", "2010798737"], - [63, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 40, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloud-monitoring/components/Aggregation.tsx:2731515387": [ - [61, 41, 23, "Do not use any type assertions.", "3275794084"], - [61, 66, 24, "Do not use any type assertions.", "1633114711"] - ], - "public/app/plugins/datasource/cloud-monitoring/components/AliasBy.tsx:2226964736": [ - [11, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloud-monitoring/components/MQLQueryEditor.tsx:1964060978": [ - [11, 28, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloud-monitoring/components/MetricQueryEditor.tsx:1694513927": [ - [34, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloud-monitoring/components/Metrics.tsx:3983761243": [ - [27, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [105, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [122, 73, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloud-monitoring/components/QueryEditor.tsx:1185096214": [ - [24, 92, 23, "Do not use any type assertions.", "3282401379"], - [24, 112, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloud-monitoring/components/VariableQueryEditor.test.tsx:533087072": [ - [12, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 26, 32, "Do not use any type assertions.", "1704671620"], - [22, 26, 13, "Do not use any type assertions.", "1298894201"], - [29, 9, 45, "Do not use any type assertions.", "169673402"], - [29, 9, 13, "Do not use any type assertions.", "2146830713"], - [30, 14, 368, "Do not use any type assertions.", "2272831439"], - [30, 14, 339, "Do not use any type assertions.", "2201205933"], - [58, 20, 96, "Do not use any type assertions.", "613249719"], - [58, 20, 64, "Do not use any type assertions.", "2377190580"] - ], - "public/app/plugins/datasource/cloud-monitoring/components/VariableQueryEditor.tsx:1720237768": [ - [67, 21, 65, "Do not use any type assertions.", "3264147543"], - [71, 85, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [112, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [152, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [162, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [199, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloud-monitoring/components/VisualMetricQueryEditor.tsx:2834737216": [ - [17, 10, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloud-monitoring/datasource.ts:2916222617": [ - [62, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 20, 585, "Do not use any type assertions.", "784044338"], - [141, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [176, 11, 151, "Do not use any type assertions.", "1377812305"], - [199, 103, 12, "Do not use any type assertions.", "2119826827"], - [199, 112, 3, "Unexpected any. Specify a different type.", "193409811"], - [215, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [221, 7, 7, "Do not use any type assertions.", "3399135973"], - [245, 17, 89, "Do not use any type assertions.", "3428053252"] - ], - "public/app/plugins/datasource/cloud-monitoring/functions.test.ts:1472529447": [ - [16, 6, 59, "Do not use any type assertions.", "3685154675"], - [16, 6, 49, "Do not use any type assertions.", "1184085652"], - [122, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [130, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [143, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloud-monitoring/functions.ts:1666788259": [ - [50, 31, 29, "Do not use any type assertions.", "2007839936"], - [51, 32, 24, "Do not use any type assertions.", "1633114711"], - [91, 39, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloud-monitoring/specs/datasource.test.ts:1699210232": [ - [14, 6, 59, "Do not use any type assertions.", "3685154675"], - [14, 6, 49, "Do not use any type assertions.", "1184085652"], - [18, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 27, 130, "Do not use any type assertions.", "2347342838"], - [25, 27, 76, "Do not use any type assertions.", "4102126346"], - [31, 18, 132, "Do not use any type assertions.", "2458802274"], - [67, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [82, 30, 14, "Do not use any type assertions.", "1944829649"], - [82, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [201, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloud-monitoring/types.ts:2289779553": [ - [217, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloudwatch/__mocks__/CloudWatchDataSource.ts:2937369549": [ - [15, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 24, 123, "Do not use any type assertions.", "2367581958"], - [20, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 4, 92, "Do not use any type assertions.", "2163436289"], - [33, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 4, 266, "Do not use any type assertions.", "1239587141"], - [48, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [55, 16, 27, "Do not use any type assertions.", "3919133751"], - [55, 40, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloudwatch/__mocks__/cloudwatch-sql-test-data/multiLineFullQuery.ts:863852381": [ - [9, 10, 4524, "Do not use any type assertions.", "2760128011"] - ], - "public/app/plugins/datasource/cloudwatch/__mocks__/cloudwatch-sql-test-data/multiLineIncompleteQueryWithoutNamespace.ts:1637847950": [ - [5, 10, 997, "Do not use any type assertions.", "2423339355"] - ], - "public/app/plugins/datasource/cloudwatch/__mocks__/cloudwatch-sql-test-data/singleLineEmptyQuery.ts:3742094421": [ - [4, 10, 27, "Do not use any type assertions.", "617369902"] - ], - "public/app/plugins/datasource/cloudwatch/__mocks__/cloudwatch-sql-test-data/singleLineFullQuery.ts:4070255895": [ - [4, 10, 4497, "Do not use any type assertions.", "1207050553"] - ], - "public/app/plugins/datasource/cloudwatch/__mocks__/cloudwatch-sql-test-data/singleLineTwoQueries.ts:378345933": [ - [4, 10, 5858, "Do not use any type assertions.", "2740642800"] - ], - "public/app/plugins/datasource/cloudwatch/__mocks__/dynamic-label-test-data/afterLabelValue.ts:3219766476": [ - [4, 10, 309, "Do not use any type assertions.", "2706832054"] - ], - "public/app/plugins/datasource/cloudwatch/__mocks__/dynamic-label-test-data/insideLabelValue.ts:3557821463": [ - [4, 10, 309, "Do not use any type assertions.", "2706832054"] - ], - "public/app/plugins/datasource/cloudwatch/__mocks__/metric-math-test-data/afterFunctionQuery.ts:2601088586": [ - [4, 10, 436, "Do not use any type assertions.", "722479539"] - ], - "public/app/plugins/datasource/cloudwatch/__mocks__/metric-math-test-data/secondArgAfterSearchQuery.ts:820861697": [ - [4, 10, 646, "Do not use any type assertions.", "4145883982"] - ], - "public/app/plugins/datasource/cloudwatch/__mocks__/metric-math-test-data/secondArgQuery.ts:2151679006": [ - [4, 10, 648, "Do not use any type assertions.", "1922461978"] - ], - "public/app/plugins/datasource/cloudwatch/__mocks__/metric-math-test-data/singleLineEmptyQuery.ts:1916201799": [ - [4, 10, 27, "Do not use any type assertions.", "617369902"] - ], - "public/app/plugins/datasource/cloudwatch/__mocks__/metric-math-test-data/thirdArgAfterSearchQuery.ts:3436955770": [ - [4, 10, 933, "Do not use any type assertions.", "3064460522"] - ], - "public/app/plugins/datasource/cloudwatch/__mocks__/metric-math-test-data/withinStringQuery.ts:792744207": [ - [4, 10, 1117, "Do not use any type assertions.", "3421267674"] - ], - "public/app/plugins/datasource/cloudwatch/__mocks__/monarch/Monaco.ts:1596319131": [ - [54, 13, 30, "Do not use any type assertions.", "2044823950"], - [54, 13, 9, "Do not use any type assertions.", "3692209159"], - [54, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloudwatch/cloudwatch-sql/completion/statementPosition.test.ts:2861609538": [ - [23, 6, 42, "Do not use any type assertions.", "3363057790"] - ], - "public/app/plugins/datasource/cloudwatch/cloudwatch-sql/completion/tokenUtils.test.ts:3421494994": [ - [27, 4, 42, "Do not use any type assertions.", "3363057790"] - ], - "public/app/plugins/datasource/cloudwatch/components/AnnotationQueryEditor.test.tsx:3945737102": [ - [55, 47, 66, "Do not use any type assertions.", "257719288"], - [62, 5, 40, "Do not use any type assertions.", "589617352"] - ], - "public/app/plugins/datasource/cloudwatch/components/ConfigEditor.tsx:3234762765": [ - [102, 22, 34, "Do not use any type assertions.", "1692406735"] - ], - "public/app/plugins/datasource/cloudwatch/components/LogsQueryEditor.tsx:1998970825": [ - [53, 33, 28, "Do not use any type assertions.", "1081347704"] - ], - "public/app/plugins/datasource/cloudwatch/components/LogsQueryField.test.tsx:1501504663": [ - [18, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 70, 34, "Do not use any type assertions.", "1535357135"], - [30, 15, 9, "Do not use any type assertions.", "3692209159"], - [30, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 10, 726, "Do not use any type assertions.", "1108484993"], - [66, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [74, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [76, 15, 9, "Do not use any type assertions.", "3692209159"], - [76, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [88, 11, 46, "Do not use any type assertions.", "4131145701"], - [185, 10, 806, "Do not use any type assertions.", "1219250420"], - [207, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [209, 15, 9, "Do not use any type assertions.", "3692209159"], - [209, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [224, 31, 69, "Do not use any type assertions.", "323157160"], - [232, 27, 69, "Do not use any type assertions.", "323157160"], - [252, 15, 9, "Do not use any type assertions.", "3692209159"], - [252, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloudwatch/components/LogsQueryField.tsx:1141751632": [ - [70, 7, 39, "Do not use any type assertions.", "1215991248"], - [82, 75, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 14, 29, "Do not use any type assertions.", "115491437"], - [207, 10, 28, "Do not use any type assertions.", "1081347704"], - [250, 39, 57, "Do not use any type assertions.", "1866145996"], - [265, 67, 3, "Unexpected any. Specify a different type.", "193409811"], - [343, 22, 28, "Do not use any type assertions.", "1081347704"] - ], - "public/app/plugins/datasource/cloudwatch/components/MetricsQueryEditor/Alias.tsx:4073366699": [ - [6, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloudwatch/components/MetricsQueryEditor/MetricsQueryEditor.test.tsx:2002367401": [ - [23, 27, 101, "Do not use any type assertions.", "1879489671"], - [46, 64, 18, "Do not use any type assertions.", "2740460614"], - [46, 79, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 84, 9, "Do not use any type assertions.", "3692209159"], - [46, 90, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloudwatch/components/MetricsQueryEditor/usePreparedMetricsQuery.test.ts:3641063027": [ - [8, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloudwatch/components/PanelQueryEditor.test.tsx:726261448": [ - [22, 9, 21, "Do not use any type assertions.", "772887555"], - [52, 20, 444, "Do not use any type assertions.", "361248309"], - [70, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [80, 20, 443, "Do not use any type assertions.", "2067842726"], - [98, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [108, 20, 472, "Do not use any type assertions.", "4092163612"], - [125, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloudwatch/components/QueryHeader.tsx:869258856": [ - [41, 15, 78, "Do not use any type assertions.", "2265747900"], - [52, 13, 63, "Do not use any type assertions.", "1673299780"] - ], - "public/app/plugins/datasource/cloudwatch/datasource.d.ts:561167771": [ - [0, 34, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloudwatch/datasource.test.ts:3643150425": [ - [30, 42, 53, "Do not use any type assertions.", "1293523870"], - [30, 67, 16, "Do not use any type assertions.", "1416388343"], - [30, 92, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 42, 65, "Do not use any type assertions.", "3968570046"], - [40, 67, 16, "Do not use any type assertions.", "1416388343"], - [40, 104, 3, "Unexpected any. Specify a different type.", "193409811"], - [65, 17, 256, "Do not use any type assertions.", "4294245023"], - [74, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [91, 17, 251, "Do not use any type assertions.", "2264281496"], - [100, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [112, 42, 163, "Do not use any type assertions.", "1523732309"], - [120, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [155, 25, 578, "Do not use any type assertions.", "4140303853"], - [174, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [334, 8, 142, "Do not use any type assertions.", "3297563410"], - [339, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [340, 8, 43, "Do not use any type assertions.", "2822747014"], - [340, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [366, 8, 72, "Do not use any type assertions.", "337442269"], - [368, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [369, 8, 43, "Do not use any type assertions.", "2822747014"], - [369, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [415, 8, 54, "Do not use any type assertions.", "3062027045"], - [415, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [456, 50, 101, "Do not use any type assertions.", "2285906034"], - [459, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [570, 19, 83, "Do not use any type assertions.", "55035528"], - [576, 7, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloudwatch/datasource.ts:1299576841": [ - [93, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [94, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [218, 26, 85, "Do not use any type assertions.", "598275619"], - [347, 23, 52, "Do not use any type assertions.", "3463806655"], - [396, 43, 28, "Do not use any type assertions.", "426490724"], - [531, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [532, 17, 66, "Do not use any type assertions.", "2836656125"], - [532, 80, 3, "Unexpected any. Specify a different type.", "193409811"], - [548, 86, 3, "Unexpected any. Specify a different type.", "193409811"], - [590, 34, 232, "Do not use any type assertions.", "2639260342"], - [608, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [608, 84, 3, "Unexpected any. Specify a different type.", "193409811"], - [608, 96, 3, "Unexpected any. Specify a different type.", "193409811"], - [608, 108, 3, "Unexpected any. Specify a different type.", "193409811"], - [630, 16, 26, "Do not use any type assertions.", "1259697827"], - [646, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [671, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [703, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [779, 74, 3, "Unexpected any. Specify a different type.", "193409811"], - [787, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [795, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [806, 71, 3, "Unexpected any. Specify a different type.", "193409811"], - [834, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [834, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [865, 11, 47, "Do not use any type assertions.", "3491676769"], - [865, 11, 19, "Do not use any type assertions.", "2012170033"], - [898, 23, 47, "Do not use any type assertions.", "3514668393"], - [898, 23, 19, "Do not use any type assertions.", "3095385657"], - [966, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloudwatch/dynamic-labels/CompletionItemProvider.test.ts:2308040365": [ - [13, 17, 20, "Do not use any type assertions.", "3987315101"], - [16, 4, 49, "Do not use any type assertions.", "657683743"] - ], - "public/app/plugins/datasource/cloudwatch/guards.ts:3427473294": [ - [15, 3, 51, "Do not use any type assertions.", "1737807943"] - ], - "public/app/plugins/datasource/cloudwatch/language_provider.test.ts:609679032": [ - [110, 9, 175, "Do not use any type assertions.", "4162776953"], - [114, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 24, 63, "Do not use any type assertions.", "2744048007"], - [124, 84, 3, "Unexpected any. Specify a different type.", "193409811"], - [128, 4, 27, "Do not use any type assertions.", "2740057088"], - [130, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [140, 21, 68, "Do not use any type assertions.", "2031893387"], - [144, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [146, 16, 60, "Do not use any type assertions.", "1832215715"], - [150, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [159, 13, 16, "Do not use any type assertions.", "2939667099"], - [159, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [162, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [185, 5, 13, "Do not use any type assertions.", "1789789644"] - ], - "public/app/plugins/datasource/cloudwatch/language_provider.ts:1849510042": [ - [34, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [49, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [95, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [152, 58, 50, "Do not use any type assertions.", "3851295971"] - ], - "public/app/plugins/datasource/cloudwatch/memoizedDebounce.ts:4234005639": [ - [2, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloudwatch/metric-math/completion/CompletionItemProvider.test.ts:809225013": [ - [20, 4, 110, "Do not use any type assertions.", "3574397240"], - [20, 4, 86, "Do not use any type assertions.", "1887426143"], - [23, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 17, 20, "Do not use any type assertions.", "3987315101"], - [29, 4, 49, "Do not use any type assertions.", "657683743"] - ], - "public/app/plugins/datasource/cloudwatch/metric-math/completion/statementPosition.test.ts:28138160": [ - [18, 6, 42, "Do not use any type assertions.", "3363057790"] - ], - "public/app/plugins/datasource/cloudwatch/migrations/dashboardMigrations.test.ts:3779106092": [ - [22, 56, 40, "Do not use any type assertions.", "3305965890"], - [23, 29, 38, "Do not use any type assertions.", "2308925956"], - [47, 27, 82, "Do not use any type assertions.", "4227293635"], - [57, 56, 40, "Do not use any type assertions.", "3305965890"] - ], - "public/app/plugins/datasource/cloudwatch/monarch/linkedTokenBuilder.test.ts:2059201503": [ - [20, 8, 42, "Do not use any type assertions.", "3363057790"], - [34, 8, 42, "Do not use any type assertions.", "3363057790"], - [54, 8, 42, "Do not use any type assertions.", "3363057790"], - [67, 8, 42, "Do not use any type assertions.", "3363057790"], - [80, 8, 42, "Do not use any type assertions.", "3363057790"] - ], - "public/app/plugins/datasource/cloudwatch/specs/datasource.test.ts:3200192217": [ - [31, 6, 59, "Do not use any type assertions.", "3685154675"], - [31, 6, 49, "Do not use any type assertions.", "1184085652"], - [35, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 27, 129, "Do not use any type assertions.", "2421308359"], - [51, 18, 249, "Do not use any type assertions.", "3381615920"], - [310, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [332, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [392, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [445, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [491, 23, 49, "Do not use any type assertions.", "3166122830"], - [493, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [530, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [561, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [568, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [587, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [624, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [646, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [758, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [786, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [822, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [854, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloudwatch/types.ts:1568078830": [ - [234, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [239, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [245, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [248, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [361, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [413, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [432, 10, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloudwatch/utils/datalinks.test.ts:1719390651": [ - [25, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 21, 95, "Do not use any type assertions.", "974656520"], - [47, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/cloudwatch/utils/datalinks.ts:956474737": [ - [25, 26, 28, "Do not use any type assertions.", "1647694337"], - [26, 22, 89, "Do not use any type assertions.", "3646399351"], - [54, 9, 221, "Do not use any type assertions.", "833332731"] - ], - "public/app/plugins/datasource/cloudwatch/utils/logsRetry.ts:465611702": [ - [29, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [141, 59, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/dashboard/DashboardQueryEditor.test.tsx:4070687403": [ - [14, 6, 58, "Do not use any type assertions.", "2751778796"], - [14, 6, 48, "Do not use any type assertions.", "1905604299"] - ], - "public/app/plugins/datasource/dashboard/DashboardQueryEditor.tsx:632095354": [ - [31, 18, 28, "Do not use any type assertions.", "1492243907"], - [58, 16, 28, "Do not use any type assertions.", "1492243907"], - [63, 8, 72, "Do not use any type assertions.", "4141489245"] - ], - "public/app/plugins/datasource/dashboard/runSharedRequest.test.ts:2672788153": [ - [9, 34, 28, "Do not use any type assertions.", "152590796"], - [9, 34, 20, "Do not use any type assertions.", "3781735909"], - [12, 15, 80, "Do not use any type assertions.", "930836956"] - ], - "public/app/plugins/datasource/dashboard/runSharedRequest.ts:1605944232": [ - [80, 10, 28, "Do not use any type assertions.", "1492243907"], - [87, 13, 22, "Do not use any type assertions.", "261136186"] - ], - "public/app/plugins/datasource/elasticsearch/components/AddRemove.test.tsx:1521995976": [ - [7, 43, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/elasticsearch/components/AddRemove.tsx:2814625633": [ - [7, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/elasticsearch/components/QueryEditor/BucketAggregationsEditor/BucketAggregationEditor.tsx:2992654333": [ - [17, 11, 28, "Do not use any type assertions.", "2126725690"] - ], - "public/app/plugins/datasource/elasticsearch/components/QueryEditor/BucketAggregationsEditor/SettingsEditor/DateHistogramSettingsEditor.tsx:1316632091": [ - [38, 23, 41, "Do not use any type assertions.", "3442618434"] - ], - "public/app/plugins/datasource/elasticsearch/components/QueryEditor/BucketAggregationsEditor/SettingsEditor/TermsSettingsEditor.tsx:747741165": [ - [106, 19, 50, "Do not use any type assertions.", "361405960"], - [110, 19, 13, "Do not use any type assertions.", "3764503605"] - ], - "public/app/plugins/datasource/elasticsearch/components/QueryEditor/BucketAggregationsEditor/aggregations.ts:2589153292": [ - [79, 36, 26, "Do not use any type assertions.", "2119272030"] - ], - "public/app/plugins/datasource/elasticsearch/components/QueryEditor/BucketAggregationsEditor/state/actions.ts:2769715712": [ - [17, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/elasticsearch/components/QueryEditor/BucketAggregationsEditor/state/reducer.ts:2660762390": [ - [54, 15, 185, "Do not use any type assertions.", "2220749175"] - ], - "public/app/plugins/datasource/elasticsearch/components/QueryEditor/ElasticsearchQueryContext.test.tsx:1034090678": [ - [20, 23, 47, "Do not use any type assertions.", "1006213347"], - [57, 22, 23, "Do not use any type assertions.", "1688867449"] - ], - "public/app/plugins/datasource/elasticsearch/components/QueryEditor/ElasticsearchQueryContext.tsx:937149808": [ - [84, 9, 48, "Do not use any type assertions.", "105565338"] - ], - "public/app/plugins/datasource/elasticsearch/components/QueryEditor/MetricAggregationsEditor/MetricEditor.test.tsx:883637991": [ - [32, 20, 34, "Do not use any type assertions.", "537625310"], - [68, 20, 34, "Do not use any type assertions.", "537625310"], - [101, 22, 52, "Do not use any type assertions.", "2399718003"] - ], - "public/app/plugins/datasource/elasticsearch/components/QueryEditor/MetricAggregationsEditor/MetricEditor.tsx:396311162": [ - [60, 15, 28, "Do not use any type assertions.", "4016667760"] - ], - "public/app/plugins/datasource/elasticsearch/components/QueryEditor/MetricAggregationsEditor/SettingsEditor/SettingField.tsx:4266745694": [ - [30, 32, 36, "Do not use any type assertions.", "1639308940"], - [33, 34, 43, "Do not use any type assertions.", "1628512991"] - ], - "public/app/plugins/datasource/elasticsearch/components/QueryEditor/MetricAggregationsEditor/SettingsEditor/index.test.tsx:1095480782": [ - [36, 22, 23, "Do not use any type assertions.", "1688867449"], - [71, 22, 23, "Do not use any type assertions.", "1688867449"], - [109, 22, 23, "Do not use any type assertions.", "1688867449"] - ], - "public/app/plugins/datasource/elasticsearch/components/QueryEditor/MetricAggregationsEditor/aggregations.ts:1202180508": [ - [390, 36, 26, "Do not use any type assertions.", "3224075668"] - ], - "public/app/plugins/datasource/elasticsearch/components/QueryEditor/MetricAggregationsEditor/state/actions.ts:2781637280": [ - [11, 108, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/elasticsearch/components/QueryEditor/MetricAggregationsEditor/state/reducer.ts:2005333444": [ - [58, 15, 162, "Do not use any type assertions.", "874529019"] - ], - "public/app/plugins/datasource/elasticsearch/components/QueryEditor/index.test.tsx:3374077294": [ - [9, 23, 47, "Do not use any type assertions.", "4096689189"], - [34, 23, 50, "Do not use any type assertions.", "3587418721"] - ], - "public/app/plugins/datasource/elasticsearch/components/hooks/useCreatableSelectPersistedBehaviour.test.tsx:2538768775": [ - [24, 18, 50, "Do not use any type assertions.", "1393827441"], - [65, 18, 50, "Do not use any type assertions.", "1393827441"], - [106, 18, 50, "Do not use any type assertions.", "1393827441"] - ], - "public/app/plugins/datasource/elasticsearch/configuration/DataLinks.test.tsx:248699332": [ - [21, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [55, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [62, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/elasticsearch/datasource.test.ts:897441922": [ - [30, 6, 59, "Do not use any type assertions.", "3685154675"], - [30, 6, 49, "Do not use any type assertions.", "1184085652"], - [51, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [83, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [100, 10, 26, "Do not use any type assertions.", "1093089864"], - [115, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [139, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [158, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [219, 58, 553, "Do not use any type assertions.", "4242808079"], - [240, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [278, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [309, 56, 391, "Do not use any type assertions.", "460569734"], - [364, 17, 24, "Do not use any type assertions.", "297012103"], - [364, 17, 13, "Do not use any type assertions.", "2146830713"], - [781, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [875, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [899, 12, 43, "Do not use any type assertions.", "2245578984"], - [913, 12, 43, "Do not use any type assertions.", "2245578984"], - [1034, 11, 93, "Do not use any type assertions.", "2047151891"], - [1037, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/elasticsearch/datasource.ts:1075501130": [ - [103, 55, 26, "Do not use any type assertions.", "3809377898"], - [135, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [167, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [200, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [211, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [237, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [237, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [241, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [241, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [250, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [259, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [269, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [289, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [299, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [319, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [319, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [349, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [433, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [451, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [452, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [666, 20, 54, "Do not use any type assertions.", "3949667779"], - [749, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [763, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [764, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [766, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [863, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [886, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [890, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [914, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [925, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [1003, 49, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/elasticsearch/elastic_response.ts:3088348414": [ - [32, 71, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 69, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 81, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [86, 29, 32, "Do not use any type assertions.", "2416812882"], - [126, 30, 36, "Do not use any type assertions.", "2848183129"], - [174, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [177, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [178, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [189, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [189, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [212, 31, 32, "Do not use any type assertions.", "2416812882"], - [221, 56, 32, "Do not use any type assertions.", "2416812882"], - [241, 30, 36, "Do not use any type assertions.", "2848183129"], - [278, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [278, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [278, 99, 3, "Unexpected any. Specify a different type.", "193409811"], - [279, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [331, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [337, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [337, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [337, 67, 3, "Unexpected any. Specify a different type.", "193409811"], - [359, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [364, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [373, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [401, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [404, 6, 71, "Do not use any type assertions.", "1732583423"], - [413, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [413, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [413, 72, 3, "Unexpected any. Specify a different type.", "193409811"], - [416, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [424, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [451, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [452, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [466, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [466, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [467, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [571, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [619, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [645, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [656, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [657, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [719, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [729, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [753, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [761, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [771, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/elasticsearch/hooks/useFields.test.tsx:2288057911": [ - [31, 20, 34, "Do not use any type assertions.", "537625310"] - ], - "public/app/plugins/datasource/elasticsearch/hooks/useNextId.test.tsx:1902196364": [ - [22, 22, 9, "Do not use any type assertions.", "3692209159"], - [22, 28, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/elasticsearch/hooks/useStatelessReducer.ts:3006386769": [ - [8, 21, 7, "Do not use any type assertions.", "3399135970"] - ], - "public/app/plugins/datasource/elasticsearch/language_provider.test.ts:2269147459": [ - [8, 24, 95, "Do not use any type assertions.", "1916765902"], - [9, 33, 11, "Do not use any type assertions.", "1435517025"], - [9, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 5, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 2, 217, "Do not use any type assertions.", "497312757"], - [23, 2, 30, "Do not use any type assertions.", "1075656071"] - ], - "public/app/plugins/datasource/elasticsearch/language_provider.ts:1738994413": [ - [6, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 61, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/elasticsearch/query_builder.ts:2804921558": [ - [33, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [97, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [126, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [150, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [170, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [170, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [175, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [175, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [217, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [225, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [274, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [315, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [316, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [365, 63, 43, "Do not use any type assertions.", "1628512991"], - [442, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [501, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [502, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/elasticsearch/specs/elastic_response.test.ts:1718217079": [ - [9, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 14, 209, "Do not use any type assertions.", "132401868"], - [306, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [358, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [416, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [479, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [527, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [676, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [746, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [782, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [954, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [1094, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [1161, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [1358, 25, 34, "Do not use any type assertions.", "1244851677"], - [1385, 12, 66, "Do not use any type assertions.", "3915217992"], - [1385, 12, 15, "Do not use any type assertions.", "363922340"], - [1385, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [1385, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [1385, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [1400, 71, 3, "Unexpected any. Specify a different type.", "193409811"], - [1421, 25, 34, "Do not use any type assertions.", "1244851677"] - ], - "public/app/plugins/datasource/elasticsearch/specs/query_builder.test.ts:2396490839": [ - [37, 65, 11, "Do not use any type assertions.", "319541530"], - [37, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [308, 22, 11, "Do not use any type assertions.", "1435517025"], - [308, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [658, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [663, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [713, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [733, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [756, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [792, 52, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/elasticsearch/test-helpers/render.tsx:4009068447": [ - [9, 14, 23, "Do not use any type assertions.", "1688867449"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/__mocks__/datasource.ts:445353040": [ - [48, 25, 29, "Do not use any type assertions.", "2135618882"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/__mocks__/instanceSettings.ts:3036217314": [ - [10, 8, 26, "Do not use any type assertions.", "1093089864"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/__mocks__/panelData.ts:3060815547": [ - [8, 11, 25, "Do not use any type assertions.", "3106602880"], - [15, 18, 19, "Do not use any type assertions.", "3473573720"], - [46, 24, 27, "Do not use any type assertions.", "331633154"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/__mocks__/query_ctrl.ts:3036312615": [ - [1, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [2, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 29, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_log_analytics/__mocks__/schema.ts:3938727102": [ - [164, 40, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_log_analytics/azure_log_analytics_datasource.test.ts:4167059627": [ - [15, 6, 59, "Do not use any type assertions.", "3685154675"], - [15, 6, 49, "Do not use any type assertions.", "1184085652"], - [27, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [184, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [292, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_log_analytics/azure_log_analytics_datasource.ts:4270729422": [ - [45, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [87, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [96, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [184, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [209, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [237, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [288, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [307, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [313, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [351, 86, 3, "Unexpected any. Specify a different type.", "193409811"], - [367, 50, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_log_analytics/response_parser.ts:2191954401": [ - [9, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 71, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 84, 3, "Unexpected any. Specify a different type.", "193409811"], - [69, 69, 3, "Unexpected any. Specify a different type.", "193409811"], - [69, 82, 3, "Unexpected any. Specify a different type.", "193409811"], - [91, 23, 75, "Do not use any type assertions.", "2061535749"], - [101, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [138, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [139, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [148, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [152, 36, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_monitor/azure_monitor_datasource.test.ts:638706502": [ - [13, 6, 59, "Do not use any type assertions.", "3685154675"], - [13, 6, 49, "Do not use any type assertions.", "1184085652"], - [23, 27, 17, "Do not use any type assertions.", "113338072"], - [27, 27, 218, "Do not use any type assertions.", "2757128075"], - [27, 27, 163, "Do not use any type assertions.", "4060478342"], - [718, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [778, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_monitor/azure_monitor_datasource.ts:3942582329": [ - [139, 103, 3, "Unexpected any. Specify a different type.", "193409811"], - [215, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [303, 85, 3, "Unexpected any. Specify a different type.", "193409811"], - [360, 17, 36, "Do not use any type assertions.", "1083211186"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_monitor/response_parser.ts:3602365700": [ - [11, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [110, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [131, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [152, 42, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_resource_graph/azure_resource_graph_datasource.test.ts:3145765242": [ - [19, 6, 59, "Do not use any type assertions.", "3685154675"], - [19, 6, 49, "Do not use any type assertions.", "1184085652"], - [32, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_resource_graph/azure_resource_graph_datasource.ts:307945672": [ - [27, 48, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/components/LogsQueryEditor/QueryField.tsx:3802036886": [ - [17, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 24, 46, "Do not use any type assertions.", "1075983491"], - [46, 24, 27, "Do not use any type assertions.", "1870938065"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/components/MetricsQueryEditor/dataHooks.test.ts:3164651012": [ - [109, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [109, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [110, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [110, 31, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/components/MonitorConfig.tsx:407231987": [ - [10, 20, 247, "Do not use any type assertions.", "1366371545"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/components/QueryEditor/QueryEditor.tsx:1250014185": [ - [139, 19, 26, "Do not use any type assertions.", "4229320041"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/components/ResourcePicker/ResourcePicker.test.tsx:460913143": [ - [23, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/components/VariableEditor/VariableEditor.test.tsx:804735513": [ - [108, 15, 275, "Do not use any type assertions.", "3095409356"], - [128, 15, 273, "Do not use any type assertions.", "2697731533"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/datasource.ts:1895109652": [ - [140, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/log_analytics/querystring_builder.ts:3940029027": [ - [3, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 91, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 44, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/time_grain_converter.ts:2322779338": [ - [5, 74, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 40, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/types/types.ts:3959223759": [ - [154, 8, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/utils/common.ts:94848056": [ - [26, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 43, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/utils/messageFromError.ts:395502107": [ - [0, 48, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/utils/useAsyncState.test.ts:1658506144": [ - [4, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 15, 25, "Do not use any type assertions.", "2641999347"] - ], - "public/app/plugins/datasource/grafana-azure-monitor-datasource/variables.test.ts:1331364170": [ - [10, 6, 59, "Do not use any type assertions.", "3685154675"], - [10, 6, 49, "Do not use any type assertions.", "1184085652"], - [26, 26, 354, "Do not use any type assertions.", "1354393999"], - [28, 10, 264, "Do not use any type assertions.", "297413427"], - [55, 26, 356, "Do not use any type assertions.", "2571179215"], - [57, 10, 266, "Do not use any type assertions.", "2917322995"], - [81, 26, 359, "Do not use any type assertions.", "2300363979"], - [83, 10, 269, "Do not use any type assertions.", "3832005239"], - [110, 26, 368, "Do not use any type assertions.", "752258440"], - [112, 10, 278, "Do not use any type assertions.", "3555784980"], - [136, 26, 384, "Do not use any type assertions.", "2278570570"], - [138, 10, 294, "Do not use any type assertions.", "3016568982"], - [165, 26, 385, "Do not use any type assertions.", "2272659527"], - [167, 10, 295, "Do not use any type assertions.", "3629245051"], - [191, 26, 401, "Do not use any type assertions.", "1343203141"], - [193, 10, 311, "Do not use any type assertions.", "128920633"], - [222, 26, 403, "Do not use any type assertions.", "1142769670"], - [224, 10, 313, "Do not use any type assertions.", "1484700762"], - [250, 26, 419, "Do not use any type assertions.", "2535472964"], - [252, 10, 329, "Do not use any type assertions.", "3679831256"], - [281, 26, 412, "Do not use any type assertions.", "2392166925"], - [283, 10, 322, "Do not use any type assertions.", "3950546289"], - [309, 26, 426, "Do not use any type assertions.", "3130099458"], - [311, 10, 336, "Do not use any type assertions.", "2465267934"], - [338, 26, 348, "Do not use any type assertions.", "553271343"], - [340, 10, 258, "Do not use any type assertions.", "1814519763"], - [365, 26, 362, "Do not use any type assertions.", "2434888097"], - [367, 10, 272, "Do not use any type assertions.", "1101004957"], - [399, 26, 144, "Do not use any type assertions.", "3556681124"], - [400, 18, 75, "Do not use any type assertions.", "1992896756"], - [400, 18, 54, "Do not use any type assertions.", "2666540601"], - [410, 26, 281, "Do not use any type assertions.", "3539142992"], - [412, 10, 191, "Do not use any type assertions.", "762876748"], - [438, 26, 412, "Do not use any type assertions.", "2392166925"], - [440, 10, 322, "Do not use any type assertions.", "3950546289"], - [470, 24, 245, "Do not use any type assertions.", "2341848736"], - [472, 8, 163, "Do not use any type assertions.", "1154794300"], - [497, 24, 334, "Do not use any type assertions.", "994281039"], - [499, 8, 252, "Do not use any type assertions.", "207432947"] - ], - "public/app/plugins/datasource/grafana/components/AnnotationQueryEditor.tsx:3120177484": [ - [40, 26, 31, "Do not use any type assertions.", "1973724908"] - ], - "public/app/plugins/datasource/grafana/components/QueryEditor.tsx:492787441": [ - [67, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 30, 25, "Do not use any type assertions.", "1789222030"], - [68, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [96, 50, 81, "Do not use any type assertions.", "527708498"], - [98, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [103, 20, 23, "Do not use any type assertions.", "4267880497"], - [107, 29, 24, "Do not use any type assertions.", "156988739"], - [194, 40, 15, "Do not use any type assertions.", "2911858555"], - [194, 52, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/grafana/components/SearchEditor.tsx:3038938660": [ - [41, 21, 8, "Do not use any type assertions.", "735633348"], - [41, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 26, 40, "Do not use any type assertions.", "2920024611"] - ], - "public/app/plugins/datasource/grafana/datasource.test.ts:1397052763": [ - [7, 6, 59, "Do not use any type assertions.", "3685154675"], - [7, 6, 49, "Do not use any type assertions.", "1184085652"], - [24, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 33, 32, "Do not use any type assertions.", "2255106576"], - [81, 9, 254, "Do not use any type assertions.", "3781638640"], - [81, 9, 214, "Do not use any type assertions.", "2684464138"] - ], - "public/app/plugins/datasource/grafana/datasource.ts:2500466263": [ - [38, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [57, 23, 32, "Do not use any type assertions.", "1209314438"], - [75, 24, 60, "Do not use any type assertions.", "1630891202"], - [75, 24, 17, "Do not use any type assertions.", "3578824270"], - [144, 22, 143, "Do not use any type assertions.", "223885715"], - [152, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [160, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [166, 23, 72, "Do not use any type assertions.", "2878703178"], - [166, 23, 29, "Do not use any type assertions.", "4139374790"], - [168, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [193, 66, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/graphite/components/FunctionEditor.tsx:3986601721": [ - [31, 51, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/graphite/components/MetricTankMetaInspector.tsx:2181823094": [ - [99, 31, 59, "Do not use any type assertions.", "365334588"] - ], - "public/app/plugins/datasource/graphite/components/helpers.ts:998249372": [ - [24, 20, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/graphite/datasource.test.ts:1450253048": [ - [13, 6, 59, "Do not use any type assertions.", "3685154675"], - [13, 6, 49, "Do not use any type assertions.", "1184085652"], - [25, 12, 13, "Do not use any type assertions.", "4118308366"], - [120, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [121, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [139, 30, 12, "Do not use any type assertions.", "2119826827"], - [139, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [169, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [177, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [185, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [219, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [222, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [247, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [251, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [265, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [268, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [403, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [404, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [407, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [414, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [424, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [434, 69, 3, "Unexpected any. Specify a different type.", "193409811"], - [444, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [455, 80, 3, "Unexpected any. Specify a different type.", "193409811"], - [466, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [477, 83, 3, "Unexpected any. Specify a different type.", "193409811"], - [495, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [506, 93, 3, "Unexpected any. Specify a different type.", "193409811"], - [517, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [528, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [613, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [615, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [638, 78, 3, "Unexpected any. Specify a different type.", "193409811"], - [643, 76, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/graphite/datasource.ts:1504631011": [ - [67, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [74, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [154, 25, 28, "Do not use any type assertions.", "3047466840"], - [184, 15, 14, "Do not use any type assertions.", "1944829649"], - [184, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [198, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [216, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [228, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [328, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [332, 28, 176, "Do not use any type assertions.", "625209889"], - [332, 28, 141, "Do not use any type assertions.", "3372776388"], - [341, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [370, 78, 3, "Unexpected any. Specify a different type.", "193409811"], - [398, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [398, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [424, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [424, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [424, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [454, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [455, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [516, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [516, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [518, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [537, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [557, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [557, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [559, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [577, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [589, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [592, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [606, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [618, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [619, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [633, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [649, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [649, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [649, 76, 3, "Unexpected any. Specify a different type.", "193409811"], - [652, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [675, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [675, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [675, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [675, 92, 3, "Unexpected any. Specify a different type.", "193409811"], - [678, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [702, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [713, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [727, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [727, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [760, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [770, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [780, 18, 262, "Do not use any type assertions.", "1752266035"], - [780, 18, 227, "Do not use any type assertions.", "3556924822"], - [795, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [796, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [797, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [798, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [799, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [815, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [821, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [824, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [832, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [851, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [896, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [898, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/graphite/datasource_integration.test.ts:779913453": [ - [14, 12, 13, "Do not use any type assertions.", "4118308366"], - [127, 24, 9, "Do not use any type assertions.", "3692209159"], - [127, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [129, 21, 78, "Do not use any type assertions.", "2678834606"], - [129, 21, 70, "Do not use any type assertions.", "180439533"], - [132, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [133, 37, 36, "Do not use any type assertions.", "2064057472"], - [133, 37, 22, "Do not use any type assertions.", "1546332218"], - [135, 7, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/graphite/gfunc.ts:914634526": [ - [19, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 24, 18, "Do not use any type assertions.", "2378474935"], - [41, 31, 18, "Do not use any type assertions.", "2378474935"], - [992, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [1006, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [1057, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [1073, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1073, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [1105, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [1105, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [1105, 86, 3, "Unexpected any. Specify a different type.", "193409811"], - [1112, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [1119, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [1134, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [1177, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/graphite/graphite_query.ts:3447566128": [ - [36, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [101, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [101, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [101, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [148, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [156, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [160, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [167, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [171, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [176, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [177, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [201, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [201, 82, 3, "Unexpected any. Specify a different type.", "193409811"], - [201, 98, 3, "Unexpected any. Specify a different type.", "193409811"], - [212, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [258, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [268, 24, 29, "Do not use any type assertions.", "2739688276"], - [291, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [333, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [333, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [333, 66, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/graphite/lexer.ts:560859780": [ - [64, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [89, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [208, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [235, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [265, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [335, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/graphite/parser.ts:174753277": [ - [3, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [111, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [137, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [167, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [248, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [253, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [253, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/graphite/specs/gfunc.test.ts:2185945634": [ - [90, 23, 30, "Do not use any type assertions.", "2243881570"], - [90, 23, 20, "Do not use any type assertions.", "3781735909"] - ], - "public/app/plugins/datasource/graphite/specs/graphite_query.test.ts:3499080737": [ - [6, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/graphite/specs/store.test.ts:3906722970": [ - [16, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 21, 21, "Do not use any type assertions.", "3580377355"], - [29, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 14, 555, "Do not use any type assertions.", "2834937127"], - [48, 7, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/graphite/state/context.tsx:1303848651": [ - [13, 59, 25, "Do not use any type assertions.", "695205067"], - [14, 69, 30, "Do not use any type assertions.", "2823515321"] - ], - "public/app/plugins/datasource/graphite/state/helpers.ts:4057347813": [ - [161, 73, 22, "Do not use any type assertions.", "3063692579"] - ], - "public/app/plugins/datasource/graphite/state/store.ts:2705871887": [ - [93, 16, 34, "Do not use any type assertions.", "2382199947"], - [133, 47, 26, "Do not use any type assertions.", "3915892908"], - [191, 14, 30, "Do not use any type assertions.", "2823515321"], - [198, 9, 31, "Do not use any type assertions.", "3670756765"] - ], - "public/app/plugins/datasource/graphite/types.ts:2835758049": [ - [23, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [76, 10, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/graphite/utils.ts:2969484923": [ - [8, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 41, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/influxdb/components/ConfigEditor.tsx:1494048044": [ - [18, 18, 94, "Do not use any type assertions.", "4247815156"], - [23, 17, 328, "Do not use any type assertions.", "1896380384"], - [67, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [90, 27, 54, "Do not use any type assertions.", "3857092238"], - [113, 28, 55, "Do not use any type assertions.", "2573057095"], - [164, 27, 54, "Do not use any type assertions.", "3857092238"], - [214, 28, 58, "Do not use any type assertions.", "17261891"] - ], - "public/app/plugins/datasource/influxdb/components/InfluxCheatSheet.tsx:1284601945": [ - [10, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/influxdb/components/VisualInfluxQLEditor/Editor.tags.test.tsx:2172472189": [ - [36, 3, 55, "Do not use any type assertions.", "601103896"], - [90, 41, 88, "Do not use any type assertions.", "1575686587"], - [90, 41, 68, "Do not use any type assertions.", "1096390308"], - [104, 12, 55, "Do not use any type assertions.", "601103896"], - [111, 12, 36, "Do not use any type assertions.", "3525546751"], - [118, 12, 49, "Do not use any type assertions.", "2352161943"] - ], - "public/app/plugins/datasource/influxdb/components/VisualInfluxQLEditor/Editor.test.tsx:1091402403": [ - [40, 39, 84, "Do not use any type assertions.", "2017206331"], - [40, 39, 64, "Do not use any type assertions.", "3281675556"] - ], - "public/app/plugins/datasource/influxdb/datasource.ts:2448659864": [ - [83, 15, 18, "Do not use any type assertions.", "1887167983"], - [120, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [121, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [122, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [125, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [147, 55, 19, "Do not use any type assertions.", "2086618273"], - [184, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [235, 85, 3, "Unexpected any. Specify a different type.", "193409811"], - [256, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [260, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [300, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [351, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [399, 72, 3, "Unexpected any. Specify a different type.", "193409811"], - [410, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [455, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [458, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [487, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [495, 20, 102, "Do not use any type assertions.", "2842096497"], - [514, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [520, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [526, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [539, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [553, 6, 14, "Do not use any type assertions.", "3854427458"], - [560, 53, 365, "Do not use any type assertions.", "331981396"], - [587, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [599, 39, 41, "Do not use any type assertions.", "629040245"], - [615, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [624, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [631, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [636, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [636, 67, 3, "Unexpected any. Specify a different type.", "193409811"], - [640, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [665, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [690, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [695, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [717, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [742, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [749, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [749, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [749, 51, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/influxdb/influx_query_model.ts:3512065173": [ - [11, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [62, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [99, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [101, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [102, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [139, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [177, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [196, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [196, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [196, 72, 3, "Unexpected any. Specify a different type.", "193409811"], - [196, 96, 3, "Unexpected any. Specify a different type.", "193409811"], - [285, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/influxdb/influx_series.ts:148233097": [ - [7, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [101, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [102, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [103, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [104, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [105, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [146, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [149, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [181, 31, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/influxdb/query_builder.ts:183402770": [ - [4, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 76, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [104, 8, 14, "Do not use any type assertions.", "3854427458"] - ], - "public/app/plugins/datasource/influxdb/query_part.ts:4016511750": [ - [4, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [94, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [94, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [115, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [115, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [127, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [127, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [127, 83, 3, "Unexpected any. Specify a different type.", "193409811"], - [129, 40, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/influxdb/response_parser.ts:90640744": [ - [9, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [73, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [90, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [90, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [91, 42, 23, "Do not use any type assertions.", "795268284"], - [95, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [96, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [97, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [99, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [100, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [138, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [141, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/influxdb/specs/datasource.test.ts:1561120261": [ - [13, 6, 59, "Do not use any type assertions.", "3685154675"], - [13, 6, 49, "Do not use any type assertions.", "1184085652"], - [18, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 75, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 18, 366, "Do not use any type assertions.", "955789765"], - [84, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [103, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [104, 18, 170, "Do not use any type assertions.", "3240415505"], - [124, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [135, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [136, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [136, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [136, 72, 3, "Unexpected any. Specify a different type.", "193409811"], - [136, 91, 3, "Unexpected any. Specify a different type.", "193409811"], - [139, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [143, 20, 358, "Do not use any type assertions.", "232080490"], - [179, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [180, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [221, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [226, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/influxdb/specs/influx_query_model.test.ts:2203652998": [ - [3, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 44, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/influxdb/specs/response_parser.test.ts:4255473522": [ - [17, 6, 59, "Do not use any type assertions.", "3685154675"], - [17, 6, 49, "Do not use any type assertions.", "1184085652"], - [302, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [308, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [320, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [324, 18, 3095, "Do not use any type assertions.", "138412281"] - ], - "public/app/plugins/datasource/jaeger/components/SearchForm.test.tsx:2983607779": [ - [24, 15, 248, "Do not use any type assertions.", "2805441424"], - [25, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 80, 3, "Unexpected any. Specify a different type.", "193409811"], - [54, 35, 22, "Do not use any type assertions.", "1546665122"], - [124, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [143, 10, 9, "Do not use any type assertions.", "3692209159"], - [143, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/jaeger/datasource.test.ts:2684588748": [ - [25, 6, 45, "Do not use any type assertions.", "1051848938"], - [25, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [108, 15, 72, "Do not use any type assertions.", "3112405971"], - [110, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [275, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [275, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [294, 10, 9, "Do not use any type assertions.", "3692209159"], - [294, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/jaeger/datasource.ts:3283189417": [ - [41, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 76, 3, "Unexpected any. Specify a different type.", "193409811"], - [80, 37, 27, "Do not use any type assertions.", "4270099088"], - [119, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [123, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [134, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [169, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [169, 112, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/jaeger/testResponse.ts:746232565": [ - [53, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 65, 17, "Do not use any type assertions.", "2728931639"], - [53, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [110, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [129, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/jaeger/types.ts:248184922": [ - [5, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/jaeger/util.ts:1878021635": [ - [6, 14, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/LokiAnnotationsQueryCtrl.tsx:321376487": [ - [6, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/components/LokiExploreQueryEditor.test.tsx:1488067923": [ - [14, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [60, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/components/LokiLabelBrowser.test.tsx:2061687302": [ - [118, 24, 55, "Do not use any type assertions.", "56609734"], - [118, 24, 31, "Do not use any type assertions.", "590524422"] - ], - "public/app/plugins/datasource/loki/components/LokiLabelBrowser.tsx:1737806516": [ - [181, 12, 23, "Do not use any type assertions.", "18217491"], - [488, 35, 33, "Do not use any type assertions.", "1081481793"] - ], - "public/app/plugins/datasource/loki/components/LokiOptionFields.test.tsx:1763613585": [ - [12, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/components/LokiQueryEditor.test.tsx:146069464": [ - [19, 37, 32, "Do not use any type assertions.", "3051558652"], - [31, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/components/LokiQueryEditorByApp.test.tsx:1772687392": [ - [14, 21, 181, "Do not use any type assertions.", "3969320052"], - [14, 21, 163, "Do not use any type assertions.", "3955022730"] - ], - "public/app/plugins/datasource/loki/components/LokiQueryField.test.tsx:2437153734": [ - [10, 14, 279, "Do not use any type assertions.", "809699243"], - [11, 22, 215, "Do not use any type assertions.", "3184288336"], - [17, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 7, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/components/LokiQueryField.tsx:3526508846": [ - [100, 14, 29, "Do not use any type assertions.", "115491437"], - [168, 33, 51, "Do not use any type assertions.", "2001608277"], - [189, 33, 51, "Do not use any type assertions.", "2001608277"] - ], - "public/app/plugins/datasource/loki/configuration/ConfigEditor.test.tsx:3658171175": [ - [26, 5, 32, "Do not use any type assertions.", "1090993851"], - [26, 34, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/configuration/ConfigEditor.tsx:3440558449": [ - [14, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/configuration/DebugSection.test.tsx:1551927716": [ - [58, 5, 44, "Do not use any type assertions.", "2784050379"], - [82, 5, 44, "Do not use any type assertions.", "2784050379"] - ], - "public/app/plugins/datasource/loki/configuration/DebugSection.tsx:588638440": [ - [64, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [110, 19, 9, "Do not use any type assertions.", "3692209159"], - [110, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [114, 15, 128, "Do not use any type assertions.", "3816412230"], - [120, 15, 70, "Do not use any type assertions.", "2323481894"] - ], - "public/app/plugins/datasource/loki/configuration/DerivedField.test.tsx:3570129984": [ - [13, 10, 171, "Do not use any type assertions.", "3827548982"], - [17, 18, 52, "Do not use any type assertions.", "1460842504"], - [19, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 10, 170, "Do not use any type assertions.", "4177653534"], - [26, 18, 51, "Do not use any type assertions.", "2978233731"], - [28, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/configuration/DerivedFields.test.tsx:2402631398": [ - [21, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [65, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/datasource.test.ts:323647404": [ - [40, 20, 118, "Do not use any type assertions.", "3331412153"], - [40, 20, 107, "Do not use any type assertions.", "1707965257"], - [49, 33, 11, "Do not use any type assertions.", "1435517025"], - [49, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 11, 24, "Do not use any type assertions.", "297012103"], - [67, 11, 13, "Do not use any type assertions.", "2146830713"], - [73, 10, 34, "Do not use any type assertions.", "528042985"], - [73, 10, 13, "Do not use any type assertions.", "2146830713"], - [90, 11, 24, "Do not use any type assertions.", "297012103"], - [90, 11, 13, "Do not use any type assertions.", "2146830713"], - [96, 10, 34, "Do not use any type assertions.", "528042985"], - [96, 10, 13, "Do not use any type assertions.", "2146830713"], - [131, 46, 14, "Do not use any type assertions.", "1944829649"], - [131, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [146, 46, 14, "Do not use any type assertions.", "1944829649"], - [146, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [161, 46, 14, "Do not use any type assertions.", "1944829649"], - [161, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [175, 18, 60, "Do not use any type assertions.", "3944580381"], - [175, 18, 39, "Do not use any type assertions.", "3851342442"], - [213, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [214, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [221, 30, 112, "Do not use any type assertions.", "112542509"], - [221, 30, 97, "Do not use any type assertions.", "1908551832"], - [222, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [226, 63, 18, "Do not use any type assertions.", "3451064243"], - [226, 78, 3, "Unexpected any. Specify a different type.", "193409811"], - [342, 22, 27, "Do not use any type assertions.", "3981291547"], - [368, 26, 27, "Do not use any type assertions.", "3981291547"], - [394, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [407, 36, 9, "Do not use any type assertions.", "3692209159"], - [407, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [407, 47, 22, "Do not use any type assertions.", "750383862"], - [407, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [407, 71, 18, "Do not use any type assertions.", "3451064243"], - [407, 86, 3, "Unexpected any. Specify a different type.", "193409811"], - [415, 37, 14, "Do not use any type assertions.", "1944829649"], - [415, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [433, 37, 14, "Do not use any type assertions.", "1944829649"], - [433, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [453, 37, 14, "Do not use any type assertions.", "1944829649"], - [453, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [471, 36, 9, "Do not use any type assertions.", "3692209159"], - [471, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [471, 47, 22, "Do not use any type assertions.", "750383862"], - [471, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [471, 71, 18, "Do not use any type assertions.", "3451064243"], - [471, 86, 3, "Unexpected any. Specify a different type.", "193409811"], - [478, 17, 14, "Do not use any type assertions.", "1944829649"], - [478, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [537, 38, 17, "Do not use any type assertions.", "3632355190"], - [549, 38, 17, "Do not use any type assertions.", "3632355190"], - [561, 38, 17, "Do not use any type assertions.", "3632355190"], - [573, 38, 17, "Do not use any type assertions.", "3632355190"], - [591, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [591, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [602, 38, 728, "Do not use any type assertions.", "2849472295"], - [602, 38, 711, "Do not use any type assertions.", "543065290"], - [639, 38, 452, "Do not use any type assertions.", "2633881295"], - [639, 38, 435, "Do not use any type assertions.", "3862743458"], - [861, 32, 136, "Do not use any type assertions.", "502310862"], - [861, 32, 121, "Do not use any type assertions.", "2843610395"], - [896, 32, 136, "Do not use any type assertions.", "502310862"], - [896, 32, 121, "Do not use any type assertions.", "2843610395"], - [945, 31, 318, "Do not use any type assertions.", "3934007650"], - [958, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [1077, 20, 100, "Do not use any type assertions.", "1753446445"], - [1077, 20, 85, "Do not use any type assertions.", "4031579544"], - [1078, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [1082, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [1089, 61, 18, "Do not use any type assertions.", "3451064243"], - [1089, 76, 3, "Unexpected any. Specify a different type.", "193409811"], - [1092, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [1107, 15, 27, "Do not use any type assertions.", "2478144973"], - [1109, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/datasource.ts:3275897202": [ - [124, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 104, 3, "Unexpected any. Specify a different type.", "193409811"], - [139, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [295, 18, 35, "Do not use any type assertions.", "1460083796"], - [322, 47, 34, "Do not use any type assertions.", "1765628107"], - [325, 29, 38, "Do not use any type assertions.", "2688090309"], - [356, 9, 38, "Do not use any type assertions.", "2688090309"], - [361, 9, 38, "Do not use any type assertions.", "2688090309"], - [377, 11, 38, "Do not use any type assertions.", "2688090309"], - [411, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [553, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [557, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [557, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [571, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [758, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [851, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [851, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [851, 90, 3, "Unexpected any. Specify a different type.", "193409811"], - [909, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [916, 46, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/getDerivedFields.ts:1557842937": [ - [37, 87, 3, "Unexpected any. Specify a different type.", "193409811"], - [65, 5, 16, "Do not use any type assertions.", "2916460327"] - ], - "public/app/plugins/datasource/loki/language_provider.test.ts:1057594308": [ - [107, 41, 244, "Do not use any type assertions.", "3324956309"], - [107, 41, 226, "Do not use any type assertions.", "2543026667"], - [108, 48, 11, "Do not use any type assertions.", "1435517025"], - [108, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [111, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [266, 37, 27, "Do not use any type assertions.", "3942339387"], - [266, 61, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/language_provider.ts:3407323642": [ - [79, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [96, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [96, 55, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/live_streams.test.ts:2871358043": [ - [10, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [74, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [82, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [96, 17, 78, "Do not use any type assertions.", "3385171523"], - [98, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [99, 59, 53, "Do not use any type assertions.", "3541955280"], - [110, 26, 31, "Do not use any type assertions.", "2301715857"], - [110, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [132, 17, 339, "Do not use any type assertions.", "2091528993"], - [141, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [142, 59, 53, "Do not use any type assertions.", "3541955280"] - ], - "public/app/plugins/datasource/loki/live_streams.ts:3211578796": [ - [47, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/mocks.ts:2085354163": [ - [31, 9, 683, "Do not use any type assertions.", "3869696855"], - [49, 7, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/querybuilder/binaryScalarOperations.ts:3784810330": [ - [82, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/querybuilder/components/LokiQueryBuilder.test.tsx:3072454371": [ - [40, 4, 72, "Do not use any type assertions.", "2534116811"], - [43, 12, 9, "Do not use any type assertions.", "3692209159"], - [43, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/querybuilder/components/LokiQueryBuilder.tsx:1944597108": [ - [34, 86, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 22, 27, "Do not use any type assertions.", "2133479311"] - ], - "public/app/plugins/datasource/loki/querybuilder/components/LokiQueryBuilderContainer.test.tsx:3009382449": [ - [25, 16, 9, "Do not use any type assertions.", "3692209159"], - [25, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/querybuilder/components/LokiQueryBuilderContainer.tsx:4118866003": [ - [72, 16, 21, "Do not use any type assertions.", "3630142339"] - ], - "public/app/plugins/datasource/loki/querybuilder/components/LokiQueryEditorSelector.test.tsx:410698953": [ - [25, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 10, 9, "Do not use any type assertions.", "3692209159"], - [45, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [168, 25, 27, "Do not use any type assertions.", "3051431932"], - [168, 49, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/querybuilder/parsing.ts:1354348776": [ - [193, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [400, 3, 58, "Do not use any type assertions.", "2658311200"] - ], - "public/app/plugins/datasource/loki/querybuilder/state.test.ts:1339439241": [ - [6, 32, 21, "Do not use any type assertions.", "722109248"], - [6, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 32, 21, "Do not use any type assertions.", "722109248"], - [19, 50, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/querybuilder/state.ts:263343567": [ - [24, 16, 67, "Do not use any type assertions.", "4104639321"] - ], - "public/app/plugins/datasource/loki/result_transformer.test.ts:1948480632": [ - [219, 60, 170, "Do not use any type assertions.", "3805545853"], - [219, 60, 148, "Do not use any type assertions.", "4116840228"], - [229, 37, 158, "Do not use any type assertions.", "3598368915"], - [229, 37, 136, "Do not use any type assertions.", "3056267444"] - ], - "public/app/plugins/datasource/loki/result_transformer.ts:418807437": [ - [159, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [231, 74, 14, "Do not use any type assertions.", "3854427458"], - [249, 15, 26, "Do not use any type assertions.", "2708677469"], - [250, 12, 26, "Do not use any type assertions.", "2708677469"], - [251, 11, 26, "Do not use any type assertions.", "4277457631"], - [406, 87, 3, "Unexpected any. Specify a different type.", "193409811"], - [434, 5, 16, "Do not use any type assertions.", "2916460327"], - [514, 38, 30, "Do not use any type assertions.", "2399652586"], - [525, 47, 20, "Do not use any type assertions.", "443888156"], - [525, 64, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/loki/streaming.ts:4005150178": [ - [39, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 16, 28, "Do not use any type assertions.", "1423682558"], - [58, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/mixed/MixedDataSource.test.ts:3538009556": [ - [25, 6, 59, "Do not use any type assertions.", "3685154675"], - [25, 6, 49, "Do not use any type assertions.", "1184085652"], - [32, 37, 9, "Do not use any type assertions.", "3692209159"], - [32, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [54, 37, 9, "Do not use any type assertions.", "3692209159"], - [54, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [86, 35, 9, "Do not use any type assertions.", "3692209159"], - [86, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [87, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [106, 35, 9, "Do not use any type assertions.", "3692209159"], - [106, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [107, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [118, 15, 152, "Do not use any type assertions.", "1526529439"], - [123, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [133, 35, 9, "Do not use any type assertions.", "3692209159"], - [133, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [136, 15, 113, "Do not use any type assertions.", "3804438474"], - [138, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/mixed/MixedDataSource.ts:1332370832": [ - [33, 16, 33, "Do not use any type assertions.", "3887101060"], - [51, 16, 33, "Do not use any type assertions.", "3887101060"], - [67, 21, 212, "Do not use any type assertions.", "2864317161"] - ], - "public/app/plugins/datasource/mssql/config_ctrl.ts:2211349046": [ - [10, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/mssql/datasource.ts:1854407228": [ - [13, 6, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 55, 18, "Do not use any type assertions.", "2474270705"], - [30, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 85, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [118, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 18, 35, "Do not use any type assertions.", "2439650125"], - [156, 28, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/mssql/module.ts:895125479": [ - [21, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/mssql/query_ctrl.ts:3397785906": [ - [21, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/mssql/response_parser.ts:4040977456": [ - [5, 19, 44, "Do not use any type assertions.", "1721934533"], - [37, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 19, 55, "Do not use any type assertions.", "52331741"] - ], - "public/app/plugins/datasource/mssql/specs/datasource.test.ts:1031027185": [ - [11, 6, 59, "Do not use any type assertions.", "3685154675"], - [11, 6, 49, "Do not use any type assertions.", "1184085652"], - [19, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [65, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [120, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [142, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [157, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [183, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [201, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [222, 55, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/mssql/types.ts:876365569": [ - [3, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/mysql/datasource.ts:2229384958": [ - [16, 6, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 55, 18, "Do not use any type assertions.", "1702060379"], - [35, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [49, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 85, 3, "Unexpected any. Specify a different type.", "193409811"], - [83, 32, 31, "Do not use any type assertions.", "138043336"], - [83, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [88, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [123, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [167, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [197, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/mysql/meta_query.ts:1787796068": [ - [1, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [1, 55, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/mysql/module.ts:3186892007": [ - [14, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/mysql/mysql_query_model.ts:4177220047": [ - [6, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 97, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [154, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [154, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [157, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [157, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [164, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [164, 40, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/mysql/query_ctrl.ts:2334518578": [ - [28, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [47, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 90, 3, "Unexpected any. Specify a different type.", "193409811"], - [119, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [128, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [132, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [135, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [186, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [186, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [210, 107, 3, "Unexpected any. Specify a different type.", "193409811"], - [212, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [219, 108, 3, "Unexpected any. Specify a different type.", "193409811"], - [242, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [281, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [286, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [295, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [296, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [308, 40, 47, "Do not use any type assertions.", "3514668393"], - [308, 40, 19, "Do not use any type assertions.", "3095385657"], - [330, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [331, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [334, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [335, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [338, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [338, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [338, 75, 3, "Unexpected any. Specify a different type.", "193409811"], - [338, 87, 3, "Unexpected any. Specify a different type.", "193409811"], - [351, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [369, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [387, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [410, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [425, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [425, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [425, 75, 3, "Unexpected any. Specify a different type.", "193409811"], - [457, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [457, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [457, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [513, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [514, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [527, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [527, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [527, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [527, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [561, 102, 3, "Unexpected any. Specify a different type.", "193409811"], - [593, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [618, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [642, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [642, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/mysql/response_parser.ts:2781493345": [ - [5, 19, 44, "Do not use any type assertions.", "1721934533"], - [37, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 19, 55, "Do not use any type assertions.", "52331741"] - ], - "public/app/plugins/datasource/mysql/specs/datasource.test.ts:3991124757": [ - [19, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 29, 128, "Do not use any type assertions.", "497725873"], - [23, 29, 84, "Do not use any type assertions.", "3361867402"], - [39, 22, 419, "Do not use any type assertions.", "839983525"], - [39, 22, 387, "Do not use any type assertions.", "3433451054"], - [66, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [427, 11, 24, "Do not use any type assertions.", "297012103"], - [427, 11, 13, "Do not use any type assertions.", "2146830713"] - ], - "public/app/plugins/datasource/mysql/sql_part.ts:1506642691": [ - [2, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/mysql/types.ts:1676212033": [ - [2, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/opentsdb/datasource.d.ts:320371355": [ - [0, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/opentsdb/datasource.ts:1620163351": [ - [32, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [66, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [82, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [106, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [126, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [130, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [162, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [182, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [182, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [182, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [187, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [216, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [225, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [227, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [233, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [233, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [238, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [251, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [253, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [264, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [264, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [270, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [272, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [287, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [300, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [321, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [380, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [398, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [409, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [409, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [409, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [409, 80, 3, "Unexpected any. Specify a different type.", "193409811"], - [411, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [415, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [427, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [427, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [427, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [429, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [430, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [441, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [458, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [458, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [463, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [533, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [533, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [539, 25, 24, "Do not use any type assertions.", "1678856187"], - [539, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [568, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [568, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [568, 55, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/opentsdb/query_ctrl.ts:3512300037": [ - [8, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [74, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [74, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [91, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [128, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [187, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [187, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [187, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [187, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [202, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/opentsdb/specs/datasource.test.ts:863311647": [ - [9, 6, 59, "Do not use any type assertions.", "3685154675"], - [9, 6, 49, "Do not use any type assertions.", "1184085652"], - [24, 67, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/opentsdb/specs/query_ctrl.test.ts:367308430": [ - [3, 14, 186, "Do not use any type assertions.", "485567670"], - [10, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 39, 9, "Do not use any type assertions.", "3692209159"], - [22, 45, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/opentsdb/types.ts:2727737953": [ - [3, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/postgres/config_ctrl.ts:2134672281": [ - [14, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 67, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 45, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/postgres/datasource.test.ts:1399629525": [ - [8, 6, 45, "Do not use any type assertions.", "1051848938"], - [8, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 40, 40, "Do not use any type assertions.", "1581159081"], - [53, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 46, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/postgres/datasource.ts:793253503": [ - [16, 6, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 55, 21, "Do not use any type assertions.", "3315586490"], - [37, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 87, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 88, 3, "Unexpected any. Specify a different type.", "193409811"], - [84, 32, 31, "Do not use any type assertions.", "138043336"], - [84, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [89, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [143, 18, 35, "Do not use any type assertions.", "2439650125"], - [186, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [190, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [194, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [199, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [204, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/postgres/module.ts:332136459": [ - [20, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/postgres/postgres_query_model.ts:2185169991": [ - [6, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [52, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 94, 3, "Unexpected any. Specify a different type.", "193409811"], - [82, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [154, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [154, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [157, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [157, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [158, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [158, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [223, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [223, 40, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/postgres/query_ctrl.ts:695404882": [ - [27, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [69, 90, 3, "Unexpected any. Specify a different type.", "193409811"], - [132, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [142, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [147, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [150, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [235, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [235, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [235, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [235, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [261, 107, 3, "Unexpected any. Specify a different type.", "193409811"], - [263, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [270, 108, 3, "Unexpected any. Specify a different type.", "193409811"], - [293, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [332, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [337, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [346, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [346, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [346, 87, 3, "Unexpected any. Specify a different type.", "193409811"], - [347, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [359, 40, 47, "Do not use any type assertions.", "3514668393"], - [359, 40, 19, "Do not use any type assertions.", "3095385657"], - [381, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [382, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [385, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [386, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [389, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [389, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [389, 75, 3, "Unexpected any. Specify a different type.", "193409811"], - [389, 87, 3, "Unexpected any. Specify a different type.", "193409811"], - [402, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [420, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [438, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [461, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [476, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [476, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [476, 75, 3, "Unexpected any. Specify a different type.", "193409811"], - [508, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [508, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [508, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [564, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [565, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [578, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [578, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [578, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [578, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [612, 102, 3, "Unexpected any. Specify a different type.", "193409811"], - [644, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [644, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [669, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [688, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [688, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/postgres/response_parser.ts:2077296207": [ - [5, 19, 44, "Do not use any type assertions.", "1721934533"], - [37, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 19, 55, "Do not use any type assertions.", "52331741"] - ], - "public/app/plugins/datasource/postgres/specs/datasource.test.ts:2366687477": [ - [19, 6, 59, "Do not use any type assertions.", "3685154675"], - [19, 6, 49, "Do not use any type assertions.", "1184085652"], - [24, 6, 72, "Do not use any type assertions.", "3662033791"], - [24, 6, 62, "Do not use any type assertions.", "2921379480"], - [35, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 29, 131, "Do not use any type assertions.", "4106964848"], - [38, 29, 84, "Do not use any type assertions.", "3361867402"], - [52, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [55, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [252, 22, 422, "Do not use any type assertions.", "3355295140"], - [252, 22, 387, "Do not use any type assertions.", "3433451054"], - [279, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [555, 38, 25, "Do not use any type assertions.", "1802808729"], - [555, 38, 15, "Do not use any type assertions.", "4120034846"], - [656, 11, 24, "Do not use any type assertions.", "297012103"], - [656, 11, 13, "Do not use any type assertions.", "2146830713"] - ], - "public/app/plugins/datasource/postgres/specs/postgres_query.test.ts:219789888": [ - [7, 13, 30, "Do not use any type assertions.", "707543372"], - [7, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [159, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/postgres/sql_part.ts:787037993": [ - [2, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/postgres/types.ts:1220867434": [ - [3, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/components/PromExploreExtraField.test.tsx:3562942415": [ - [11, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/components/PromExploreQueryEditor.test.tsx:2535376495": [ - [32, 43, 38, "Do not use any type assertions.", "4119920615"], - [76, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/components/PromLink.test.tsx:168947763": [ - [11, 6, 42, "Do not use any type assertions.", "3372195270"], - [11, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 9, 57, "Do not use any type assertions.", "2206491905"], - [46, 9, 81, "Do not use any type assertions.", "3325662730"], - [46, 9, 57, "Do not use any type assertions.", "396070383"], - [58, 9, 81, "Do not use any type assertions.", "3325662730"], - [58, 9, 57, "Do not use any type assertions.", "396070383"], - [65, 81, 15, "Do not use any type assertions.", "582966363"], - [76, 81, 15, "Do not use any type assertions.", "582966363"], - [77, 103, 9, "Do not use any type assertions.", "3692209159"], - [77, 109, 3, "Unexpected any. Specify a different type.", "193409811"], - [96, 17, 15, "Do not use any type assertions.", "582966363"], - [108, 17, 15, "Do not use any type assertions.", "582966363"] - ], - "public/app/plugins/datasource/prometheus/components/PromLink.tsx:1780413030": [ - [42, 24, 104, "Do not use any type assertions.", "3989103559"] - ], - "public/app/plugins/datasource/prometheus/components/PromQueryEditor.test.tsx:3343108891": [ - [40, 43, 38, "Do not use any type assertions.", "4119920615"], - [45, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/components/PromQueryEditor.tsx:3385269486": [ - [67, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 21, 28, "Do not use any type assertions.", "1547636696"] - ], - "public/app/plugins/datasource/prometheus/components/PromQueryEditorByApp.test.tsx:2611950652": [ - [16, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 21, 342, "Do not use any type assertions.", "3967834366"], - [40, 21, 318, "Do not use any type assertions.", "1899122267"] - ], - "public/app/plugins/datasource/prometheus/components/PromQueryField.test.tsx:100935429": [ - [16, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 14, 212, "Do not use any type assertions.", "838981829"], - [25, 14, 188, "Do not use any type assertions.", "2148223584"], - [82, 10, 124, "Do not use any type assertions.", "4085049563"], - [83, 20, 38, "Do not use any type assertions.", "2113153552"], - [105, 10, 160, "Do not use any type assertions.", "2442127151"], - [105, 10, 136, "Do not use any type assertions.", "255927626"], - [155, 9, 267, "Do not use any type assertions.", "3379384862"], - [155, 9, 241, "Do not use any type assertions.", "3571389634"], - [156, 22, 9, "Do not use any type assertions.", "3815122951"], - [156, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [165, 7, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/components/PromQueryField.tsx:1313459466": [ - [83, 67, 3, "Unexpected any. Specify a different type.", "193409811"], - [85, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [95, 14, 29, "Do not use any type assertions.", "115491437"] - ], - "public/app/plugins/datasource/prometheus/components/PrometheusMetricsBrowser.test.tsx:545523800": [ - [136, 24, 57, "Do not use any type assertions.", "1107201626"], - [136, 24, 31, "Do not use any type assertions.", "590524422"] - ], - "public/app/plugins/datasource/prometheus/components/PrometheusMetricsBrowser.tsx:726044907": [ - [192, 12, 23, "Do not use any type assertions.", "18217491"], - [500, 35, 36, "Do not use any type assertions.", "1841380465"], - [589, 39, 33, "Do not use any type assertions.", "1081481793"] - ], - "public/app/plugins/datasource/prometheus/configuration/AzureCredentials.ts:3749194789": [ - [10, 32, 250, "Do not use any type assertions.", "4084281205"] - ], - "public/app/plugins/datasource/prometheus/configuration/AzureCredentialsConfig.ts:3053226774": [ - [11, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 22, 65, "Do not use any type assertions.", "2752532169"], - [68, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [70, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [70, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [118, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [118, 71, 3, "Unexpected any. Specify a different type.", "193409811"], - [118, 105, 3, "Unexpected any. Specify a different type.", "193409811"], - [118, 110, 3, "Unexpected any. Specify a different type.", "193409811"], - [127, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [127, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [127, 100, 3, "Unexpected any. Specify a different type.", "193409811"], - [127, 105, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/configuration/ConfigEditor.tsx:3543303340": [ - [21, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 58, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/configuration/PromSettings.test.tsx:378978604": [ - [14, 10, 82, "Do not use any type assertions.", "2545369773"], - [14, 10, 20, "Do not use any type assertions.", "3781735909"] - ], - "public/app/plugins/datasource/prometheus/configuration/PromSettings.tsx:426080943": [ - [160, 10, 36, "Do not use any type assertions.", "2983800720"] - ], - "public/app/plugins/datasource/prometheus/datasource.test.ts:2314786804": [ - [40, 33, 11, "Do not use any type assertions.", "1435517025"], - [40, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 27, 218, "Do not use any type assertions.", "2713730988"], - [59, 27, 175, "Do not use any type assertions.", "368442605"], - [65, 14, 47, "Do not use any type assertions.", "4269751858"], - [67, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 52, 22, "Do not use any type assertions.", "750383862"], - [71, 71, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 76, 18, "Do not use any type assertions.", "3451064243"], - [71, 91, 3, "Unexpected any. Specify a different type.", "193409811"], - [115, 60, 22, "Do not use any type assertions.", "750383862"], - [115, 79, 3, "Unexpected any. Specify a different type.", "193409811"], - [115, 84, 18, "Do not use any type assertions.", "3451064243"], - [115, 99, 3, "Unexpected any. Specify a different type.", "193409811"], - [123, 60, 22, "Do not use any type assertions.", "750383862"], - [123, 79, 3, "Unexpected any. Specify a different type.", "193409811"], - [123, 84, 18, "Do not use any type assertions.", "3451064243"], - [123, 99, 3, "Unexpected any. Specify a different type.", "193409811"], - [135, 13, 144, "Do not use any type assertions.", "3881534057"], - [139, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [144, 41, 70, "Do not use any type assertions.", "1064371853"], - [144, 108, 3, "Unexpected any. Specify a different type.", "193409811"], - [145, 8, 22, "Do not use any type assertions.", "750383862"], - [145, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [146, 8, 18, "Do not use any type assertions.", "3451064243"], - [146, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [179, 41, 71, "Do not use any type assertions.", "4016436003"], - [179, 109, 3, "Unexpected any. Specify a different type.", "193409811"], - [180, 8, 22, "Do not use any type assertions.", "750383862"], - [180, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [181, 8, 18, "Do not use any type assertions.", "3451064243"], - [181, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [235, 36, 13, "Do not use any type assertions.", "4160775600"], - [235, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [235, 51, 26, "Do not use any type assertions.", "408081365"], - [235, 74, 3, "Unexpected any. Specify a different type.", "193409811"], - [252, 36, 13, "Do not use any type assertions.", "4160775600"], - [252, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [252, 51, 26, "Do not use any type assertions.", "408081365"], - [252, 74, 3, "Unexpected any. Specify a different type.", "193409811"], - [269, 36, 13, "Do not use any type assertions.", "4160775600"], - [269, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [269, 51, 26, "Do not use any type assertions.", "408081365"], - [269, 74, 3, "Unexpected any. Specify a different type.", "193409811"], - [277, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [489, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [518, 39, 11, "Do not use any type assertions.", "405317984"], - [518, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [578, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [687, 27, 181, "Do not use any type assertions.", "1319156054"], - [687, 27, 138, "Do not use any type assertions.", "2569221783"], - [697, 52, 22, "Do not use any type assertions.", "750383862"], - [697, 71, 3, "Unexpected any. Specify a different type.", "193409811"], - [697, 76, 18, "Do not use any type assertions.", "3451064243"], - [697, 91, 3, "Unexpected any. Specify a different type.", "193409811"], - [702, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [730, 17, 12, "Do not use any type assertions.", "2119826827"], - [730, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [730, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [767, 17, 12, "Do not use any type assertions.", "2119826827"], - [767, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [767, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [776, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [813, 15, 12, "Do not use any type assertions.", "2119826827"], - [813, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [813, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [850, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [875, 15, 12, "Do not use any type assertions.", "2119826827"], - [875, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [875, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [895, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [896, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [915, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [928, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [947, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [1012, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [1069, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [1096, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [1120, 15, 12, "Do not use any type assertions.", "2119826827"], - [1120, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1120, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [1136, 18, 29, "Do not use any type assertions.", "3224701374"], - [1156, 15, 12, "Do not use any type assertions.", "2119826827"], - [1156, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1171, 15, 12, "Do not use any type assertions.", "2119826827"], - [1171, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1191, 15, 12, "Do not use any type assertions.", "2119826827"], - [1191, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1208, 15, 12, "Do not use any type assertions.", "2119826827"], - [1208, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1230, 15, 12, "Do not use any type assertions.", "2119826827"], - [1230, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1251, 15, 12, "Do not use any type assertions.", "2119826827"], - [1251, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1273, 15, 12, "Do not use any type assertions.", "2119826827"], - [1273, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1295, 15, 12, "Do not use any type assertions.", "2119826827"], - [1295, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1321, 15, 12, "Do not use any type assertions.", "2119826827"], - [1321, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1334, 18, 29, "Do not use any type assertions.", "3224701374"], - [1361, 32, 28, "Do not use any type assertions.", "3579823212"], - [1361, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [1363, 15, 12, "Do not use any type assertions.", "2119826827"], - [1363, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1401, 32, 28, "Do not use any type assertions.", "3579823212"], - [1401, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [1402, 15, 12, "Do not use any type assertions.", "2119826827"], - [1402, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1441, 32, 28, "Do not use any type assertions.", "3579823212"], - [1441, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [1442, 15, 12, "Do not use any type assertions.", "2119826827"], - [1442, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1486, 32, 28, "Do not use any type assertions.", "3579823212"], - [1486, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [1488, 15, 12, "Do not use any type assertions.", "2119826827"], - [1488, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1528, 15, 12, "Do not use any type assertions.", "2119826827"], - [1528, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1576, 32, 28, "Do not use any type assertions.", "3579823212"], - [1576, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [1577, 15, 12, "Do not use any type assertions.", "2119826827"], - [1577, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1601, 18, 29, "Do not use any type assertions.", "3224701374"], - [1625, 32, 28, "Do not use any type assertions.", "3579823212"], - [1625, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [1627, 15, 12, "Do not use any type assertions.", "2119826827"], - [1627, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1660, 29, 26, "Do not use any type assertions.", "408081365"], - [1660, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [1664, 29, 25, "Do not use any type assertions.", "2728495482"], - [1664, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [1668, 50, 26, "Do not use any type assertions.", "408081365"], - [1668, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [1673, 52, 26, "Do not use any type assertions.", "408081365"], - [1673, 75, 3, "Unexpected any. Specify a different type.", "193409811"], - [1678, 52, 25, "Do not use any type assertions.", "2728495482"], - [1678, 74, 3, "Unexpected any. Specify a different type.", "193409811"], - [1683, 55, 26, "Do not use any type assertions.", "488233838"], - [1683, 78, 3, "Unexpected any. Specify a different type.", "193409811"], - [1688, 55, 26, "Do not use any type assertions.", "408081365"], - [1688, 78, 3, "Unexpected any. Specify a different type.", "193409811"], - [1693, 54, 26, "Do not use any type assertions.", "408081365"], - [1693, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [1711, 26, 79, "Do not use any type assertions.", "2012147291"], - [1713, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [1715, 20, 121, "Do not use any type assertions.", "2433370061"], - [1715, 20, 90, "Do not use any type assertions.", "1922517532"], - [1719, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [1730, 27, 182, "Do not use any type assertions.", "994656536"], - [1730, 27, 139, "Do not use any type assertions.", "1761590297"], - [1740, 52, 22, "Do not use any type assertions.", "750383862"], - [1740, 71, 3, "Unexpected any. Specify a different type.", "193409811"], - [1740, 76, 18, "Do not use any type assertions.", "3451064243"], - [1740, 91, 3, "Unexpected any. Specify a different type.", "193409811"], - [1744, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [1774, 15, 12, "Do not use any type assertions.", "2119826827"], - [1774, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [1774, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [1796, 15, 43, "Do not use any type assertions.", "2312348214"], - [1800, 28, 18, "Do not use any type assertions.", "2279864617"], - [1800, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [1800, 48, 14, "Do not use any type assertions.", "1944829649"], - [1800, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [1808, 8, 22, "Do not use any type assertions.", "750383862"], - [1808, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [1809, 8, 18, "Do not use any type assertions.", "3451064243"], - [1809, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [1811, 32, 18, "Do not use any type assertions.", "2279864617"], - [1811, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [1811, 52, 14, "Do not use any type assertions.", "1944829649"], - [1811, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [1827, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [1829, 27, 182, "Do not use any type assertions.", "994656536"], - [1829, 27, 139, "Do not use any type assertions.", "1761590297"], - [1839, 18, 119, "Do not use any type assertions.", "3540113233"], - [1839, 18, 88, "Do not use any type assertions.", "2138856192"], - [1845, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [1847, 56, 22, "Do not use any type assertions.", "750383862"], - [1847, 75, 3, "Unexpected any. Specify a different type.", "193409811"], - [1847, 80, 18, "Do not use any type assertions.", "3451064243"], - [1847, 95, 3, "Unexpected any. Specify a different type.", "193409811"], - [2158, 33, 70, "Do not use any type assertions.", "3043260108"], - [2158, 33, 27, "Do not use any type assertions.", "3197369293"], - [2159, 62, 22, "Do not use any type assertions.", "750383862"], - [2159, 81, 3, "Unexpected any. Specify a different type.", "193409811"], - [2159, 86, 18, "Do not use any type assertions.", "3451064243"], - [2159, 101, 3, "Unexpected any. Specify a different type.", "193409811"], - [2172, 33, 70, "Do not use any type assertions.", "3043260108"], - [2172, 33, 27, "Do not use any type assertions.", "3197369293"], - [2173, 62, 22, "Do not use any type assertions.", "750383862"], - [2173, 81, 3, "Unexpected any. Specify a different type.", "193409811"], - [2173, 86, 18, "Do not use any type assertions.", "3451064243"], - [2173, 101, 3, "Unexpected any. Specify a different type.", "193409811"], - [2188, 33, 70, "Do not use any type assertions.", "3043260108"], - [2188, 33, 27, "Do not use any type assertions.", "3197369293"], - [2189, 62, 22, "Do not use any type assertions.", "750383862"], - [2189, 81, 3, "Unexpected any. Specify a different type.", "193409811"], - [2189, 86, 18, "Do not use any type assertions.", "3451064243"], - [2189, 101, 3, "Unexpected any. Specify a different type.", "193409811"], - [2202, 33, 70, "Do not use any type assertions.", "3043260108"], - [2202, 33, 27, "Do not use any type assertions.", "3197369293"], - [2203, 62, 22, "Do not use any type assertions.", "750383862"], - [2203, 81, 3, "Unexpected any. Specify a different type.", "193409811"], - [2203, 86, 18, "Do not use any type assertions.", "3451064243"], - [2203, 101, 3, "Unexpected any. Specify a different type.", "193409811"], - [2214, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [2234, 9, 71, "Do not use any type assertions.", "282262522"] - ], - "public/app/plugins/datasource/prometheus/datasource.tsx:1687676373": [ - [78, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [87, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [155, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [213, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [242, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [281, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [290, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [320, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [419, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [420, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [427, 17, 175, "Do not use any type assertions.", "3357486794"], - [452, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [453, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [482, 85, 3, "Unexpected any. Specify a different type.", "193409811"], - [593, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [623, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [646, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [695, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [735, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [833, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [840, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [844, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [850, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [937, 49, 360, "Do not use any type assertions.", "438249797"], - [968, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [990, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [1028, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [1086, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [1086, 89, 3, "Unexpected any. Specify a different type.", "193409811"], - [1086, 102, 3, "Unexpected any. Specify a different type.", "193409811"], - [1106, 84, 3, "Unexpected any. Specify a different type.", "193409811"], - [1155, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [1159, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [1161, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [1174, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [1178, 52, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/language_provider.test.ts:4010882722": [ - [13, 43, 207, "Do not use any type assertions.", "100349463"], - [13, 43, 183, "Do not use any type assertions.", "144249394"], - [14, 44, 11, "Do not use any type assertions.", "1435517025"], - [14, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [87, 52, 142, "Do not use any type assertions.", "2740095859"], - [105, 52, 142, "Do not use any type assertions.", "2740095859"], - [304, 48, 261, "Do not use any type assertions.", "532631191"], - [304, 48, 237, "Do not use any type assertions.", "250325682"], - [305, 48, 49, "Do not use any type assertions.", "3168966497"], - [305, 92, 3, "Unexpected any. Specify a different type.", "193409811"], - [308, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [326, 47, 470, "Do not use any type assertions.", "1132026442"], - [326, 47, 446, "Do not use any type assertions.", "1042678575"], - [342, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [360, 44, 166, "Do not use any type assertions.", "3243797969"], - [360, 44, 142, "Do not use any type assertions.", "1850995060"], - [365, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [404, 44, 122, "Do not use any type assertions.", "1667458867"], - [404, 44, 98, "Do not use any type assertions.", "438713174"], - [407, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [425, 44, 122, "Do not use any type assertions.", "1667458867"], - [425, 44, 98, "Do not use any type assertions.", "438713174"], - [428, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [445, 44, 122, "Do not use any type assertions.", "1667458867"], - [445, 44, 98, "Do not use any type assertions.", "438713174"], - [448, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [465, 44, 122, "Do not use any type assertions.", "1667458867"], - [465, 44, 98, "Do not use any type assertions.", "438713174"], - [468, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [491, 44, 122, "Do not use any type assertions.", "1667458867"], - [491, 44, 98, "Do not use any type assertions.", "438713174"], - [494, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [515, 44, 122, "Do not use any type assertions.", "1667458867"], - [515, 44, 98, "Do not use any type assertions.", "438713174"], - [518, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [554, 44, 122, "Do not use any type assertions.", "1667458867"], - [554, 44, 98, "Do not use any type assertions.", "438713174"], - [557, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [578, 47, 241, "Do not use any type assertions.", "3186783191"], - [578, 47, 217, "Do not use any type assertions.", "400866290"], - [579, 56, 11, "Do not use any type assertions.", "1435517025"], - [579, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [582, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [596, 14, 34, "Do not use any type assertions.", "2388311330"], - [598, 14, 34, "Do not use any type assertions.", "2388311330"], - [600, 14, 34, "Do not use any type assertions.", "2388311330"], - [606, 47, 232, "Do not use any type assertions.", "3426102983"], - [606, 47, 208, "Do not use any type assertions.", "2851503842"], - [607, 56, 26, "Do not use any type assertions.", "900749337"], - [610, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [622, 14, 34, "Do not use any type assertions.", "2388311330"], - [624, 14, 34, "Do not use any type assertions.", "2388311330"], - [626, 14, 34, "Do not use any type assertions.", "2388311330"], - [630, 47, 288, "Do not use any type assertions.", "2765619055"], - [630, 47, 264, "Do not use any type assertions.", "2001989514"], - [631, 56, 26, "Do not use any type assertions.", "900749337"], - [635, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [638, 14, 34, "Do not use any type assertions.", "2388311330"], - [640, 14, 34, "Do not use any type assertions.", "2388311330"] - ], - "public/app/plugins/datasource/prometheus/language_provider.ts:1179388110": [ - [43, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [88, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [122, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [122, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [133, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [554, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [558, 23, 22, "Do not use any type assertions.", "326162577"] - ], - "public/app/plugins/datasource/prometheus/language_utils.ts:3405383743": [ - [57, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [237, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [272, 61, 70, "Do not use any type assertions.", "1374617983"], - [311, 25, 21, "Do not use any type assertions.", "566101311"], - [316, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [316, 35, 22, "Do not use any type assertions.", "4020506171"], - [316, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [320, 25, 37, "Do not use any type assertions.", "2786399735"], - [327, 27, 45, "Do not use any type assertions.", "881765776"], - [330, 29, 45, "Do not use any type assertions.", "881765776"] - ], - "public/app/plugins/datasource/prometheus/metric_find_query.test.ts:142842024": [ - [12, 6, 59, "Do not use any type assertions.", "3685154675"], - [12, 6, 49, "Do not use any type assertions.", "1184085652"], - [18, 25, 178, "Do not use any type assertions.", "2743844758"], - [18, 25, 135, "Do not use any type assertions.", "3994661463"], - [34, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 24, 95, "Do not use any type assertions.", "1916765902"], - [45, 33, 11, "Do not use any type assertions.", "1435517025"], - [45, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [47, 5, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [60, 42, 70, "Do not use any type assertions.", "164910658"], - [60, 42, 53, "Do not use any type assertions.", "1065771343"], - [165, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [216, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [240, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/metric_find_query.ts:3246701167": [ - [62, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [83, 72, 3, "Unexpected any. Specify a different type.", "193409811"], - [96, 72, 3, "Unexpected any. Specify a different type.", "193409811"], - [122, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [140, 43, 35, "Do not use any type assertions.", "2712117061"], - [175, 70, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/query_hints.test.ts:3821515673": [ - [45, 23, 28, "Do not use any type assertions.", "252196522"] - ], - "public/app/plugins/datasource/prometheus/query_hints.ts:740561303": [ - [11, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 11, 200, "Do not use any type assertions.", "3050257633"], - [100, 13, 187, "Do not use any type assertions.", "1395985836"], - [100, 13, 175, "Do not use any type assertions.", "4213229123"], - [107, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [118, 13, 197, "Do not use any type assertions.", "2921911846"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/binaryScalarOperations.ts:1124544415": [ - [79, 3, 58, "Do not use any type assertions.", "2658311200"], - [85, 23, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/components/LabelParamEditor.tsx:3401363989": [ - [19, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 22, 15, "Do not use any type assertions.", "3446303945"], - [47, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/components/MetricSelect.tsx:81307570": [ - [23, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 63, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/components/PromQueryBuilder.test.tsx:3447149653": [ - [168, 17, 15, "Do not use any type assertions.", "2931285723"], - [188, 27, 68, "Do not use any type assertions.", "1641181778"], - [188, 27, 42, "Do not use any type assertions.", "1860367374"], - [190, 4, 72, "Do not use any type assertions.", "2534116811"], - [193, 12, 9, "Do not use any type assertions.", "3692209159"], - [193, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [194, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/components/PromQueryBuilder.tsx:4173778590": [ - [106, 22, 27, "Do not use any type assertions.", "2133479311"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/components/PromQueryBuilderContainer.test.tsx:3545369509": [ - [36, 27, 68, "Do not use any type assertions.", "1641181778"], - [36, 27, 42, "Do not use any type assertions.", "1860367374"], - [38, 4, 72, "Do not use any type assertions.", "2534116811"], - [41, 12, 9, "Do not use any type assertions.", "3692209159"], - [41, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/components/PromQueryBuilderContainer.tsx:1903118935": [ - [66, 16, 21, "Do not use any type assertions.", "3630142339"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/components/PromQueryBuilderOptions.test.tsx:3516631775": [ - [41, 29, 31, "Do not use any type assertions.", "3190934078"], - [57, 29, 31, "Do not use any type assertions.", "3190934078"], - [75, 30, 27, "Do not use any type assertions.", "2126393756"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/components/PromQueryEditorSelector.test.tsx:4261267010": [ - [28, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 12, 9, "Do not use any type assertions.", "3692209159"], - [56, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [60, 4, 68, "Do not use any type assertions.", "1641181778"], - [60, 4, 42, "Do not use any type assertions.", "1860367374"], - [163, 25, 27, "Do not use any type assertions.", "3051431932"], - [163, 49, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/shared/LabelFilterItem.tsx:3990888924": [ - [65, 23, 155, "Do not use any type assertions.", "2419762696"], - [65, 23, 128, "Do not use any type assertions.", "1950878359"], - [69, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [80, 23, 63, "Do not use any type assertions.", "168255657"], - [80, 23, 36, "Do not use any type assertions.", "381764118"], - [80, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [108, 23, 92, "Do not use any type assertions.", "511072900"], - [108, 23, 65, "Do not use any type assertions.", "791801755"], - [108, 85, 3, "Unexpected any. Specify a different type.", "193409811"], - [111, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [115, 23, 87, "Do not use any type assertions.", "1044305842"], - [115, 23, 60, "Do not use any type assertions.", "4026468781"], - [115, 80, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/shared/LabelFilters.tsx:1456752614": [ - [36, 15, 38, "Do not use any type assertions.", "1544016021"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/shared/OperationEditor.tsx:172095144": [ - [23, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [167, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/shared/OperationHeader.tsx:788862795": [ - [15, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/shared/OperationList.test.tsx:1620880507": [ - [65, 27, 68, "Do not use any type assertions.", "1641181778"], - [65, 27, 42, "Do not use any type assertions.", "1860367374"], - [67, 16, 193, "Do not use any type assertions.", "3010885491"], - [68, 6, 80, "Do not use any type assertions.", "1174525131"], - [71, 14, 9, "Do not use any type assertions.", "3692209159"], - [71, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/shared/OperationParamEditor.tsx:718288353": [ - [53, 13, 22, "Do not use any type assertions.", "427115608"], - [66, 22, 47, "Do not use any type assertions.", "1677654663"], - [66, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 13, 16, "Do not use any type assertions.", "1505098561"], - [75, 77, 15, "Do not use any type assertions.", "3446303945"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/shared/operationUtils.ts:3823919417": [ - [144, 5, 47, "Do not use any type assertions.", "3054721347"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/shared/parsingUtils.ts:2306816532": [ - [99, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [150, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [185, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/shared/types.ts:2075262390": [ - [23, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/state.test.ts:2375992814": [ - [7, 32, 21, "Do not use any type assertions.", "722109248"], - [7, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 32, 21, "Do not use any type assertions.", "722109248"], - [17, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 32, 21, "Do not use any type assertions.", "722109248"], - [32, 50, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/querybuilder/state.ts:1179483326": [ - [26, 16, 67, "Do not use any type assertions.", "4104639321"] - ], - "public/app/plugins/datasource/prometheus/result_transformer.test.ts:1135772145": [ - [74, 22, 165, "Do not use any type assertions.", "3616512949"], - [74, 22, 134, "Do not use any type assertions.", "1610955364"], - [82, 23, 215, "Do not use any type assertions.", "4105091271"], - [82, 23, 194, "Do not use any type assertions.", "3547266092"], - [101, 22, 159, "Do not use any type assertions.", "3918794810"], - [101, 22, 128, "Do not use any type assertions.", "3639203659"], - [109, 23, 475, "Do not use any type assertions.", "32497096"], - [109, 23, 454, "Do not use any type assertions.", "2165543619"], - [136, 22, 159, "Do not use any type assertions.", "3918794810"], - [136, 22, 128, "Do not use any type assertions.", "3639203659"], - [144, 23, 859, "Do not use any type assertions.", "1717191827"], - [144, 23, 838, "Do not use any type assertions.", "4211689208"], - [186, 22, 243, "Do not use any type assertions.", "2560379548"], - [186, 22, 212, "Do not use any type assertions.", "4047813485"], - [198, 23, 859, "Do not use any type assertions.", "2581699728"], - [198, 23, 838, "Do not use any type assertions.", "135566107"], - [235, 22, 161, "Do not use any type assertions.", "3494914880"], - [235, 22, 130, "Do not use any type assertions.", "1214974257"], - [243, 23, 1170, "Do not use any type assertions.", "568809798"], - [243, 23, 1149, "Do not use any type assertions.", "1824815373"], - [293, 22, 161, "Do not use any type assertions.", "3494914880"], - [293, 22, 130, "Do not use any type assertions.", "1214974257"], - [301, 23, 1207, "Do not use any type assertions.", "1842661879"], - [301, 23, 1186, "Do not use any type assertions.", "4083378012"], - [408, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [418, 33, 25, "Do not use any type assertions.", "3605151630"], - [418, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [429, 33, 25, "Do not use any type assertions.", "3605151630"], - [429, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [463, 33, 25, "Do not use any type assertions.", "3605151630"], - [463, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [493, 33, 25, "Do not use any type assertions.", "3605151630"], - [493, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [521, 33, 25, "Do not use any type assertions.", "3605151630"], - [521, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [545, 33, 25, "Do not use any type assertions.", "3605151630"], - [545, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [566, 46, 25, "Do not use any type assertions.", "3605151630"], - [566, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [572, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [615, 33, 25, "Do not use any type assertions.", "3605151630"], - [615, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [615, 60, 42, "Do not use any type assertions.", "537392944"], - [615, 99, 3, "Unexpected any. Specify a different type.", "193409811"], - [647, 33, 25, "Do not use any type assertions.", "3605151630"], - [647, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [647, 60, 42, "Do not use any type assertions.", "537392944"], - [647, 99, 3, "Unexpected any. Specify a different type.", "193409811"], - [673, 46, 25, "Do not use any type assertions.", "3605151630"], - [673, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [700, 46, 25, "Do not use any type assertions.", "3605151630"], - [700, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [713, 33, 31, "Do not use any type assertions.", "1194528341"], - [713, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [723, 33, 31, "Do not use any type assertions.", "1194528341"], - [723, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [748, 33, 25, "Do not use any type assertions.", "3605151630"], - [748, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [777, 33, 25, "Do not use any type assertions.", "3605151630"], - [777, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [789, 33, 31, "Do not use any type assertions.", "1194528341"], - [789, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [811, 33, 25, "Do not use any type assertions.", "3605151630"], - [811, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [828, 48, 25, "Do not use any type assertions.", "3605151630"], - [828, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [856, 50, 25, "Do not use any type assertions.", "3605151630"], - [856, 72, 3, "Unexpected any. Specify a different type.", "193409811"], - [884, 33, 34, "Do not use any type assertions.", "754911623"], - [884, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [893, 10, 112, "Do not use any type assertions.", "4208530828"], - [898, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [935, 33, 25, "Do not use any type assertions.", "3605151630"], - [935, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [941, 35, 34, "Do not use any type assertions.", "754911623"], - [941, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [950, 35, 34, "Do not use any type assertions.", "754911623"], - [950, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [959, 35, 34, "Do not use any type assertions.", "754911623"], - [959, 66, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/prometheus/result_transformer.ts:1007712959": [ - [110, 15, 135, "Do not use any type assertions.", "3297457942"], - [178, 58, 37, "Do not use any type assertions.", "1315377127"] - ], - "public/app/plugins/datasource/prometheus/types.ts:1752579129": [ - [50, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [113, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [117, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/tempo/QueryEditor/NativeSearch.test.tsx:3510665018": [ - [32, 18, 160, "Do not use any type assertions.", "2324324215"], - [56, 32, 21, "Do not use any type assertions.", "1029279263"], - [84, 20, 21, "Do not use any type assertions.", "1029279263"], - [106, 32, 21, "Do not use any type assertions.", "1029279263"] - ], - "public/app/plugins/datasource/tempo/QueryEditor/QueryField.tsx:1401394017": [ - [207, 13, 31, "Do not use any type assertions.", "1711052030"], - [217, 39, 26, "Do not use any type assertions.", "2053955072"], - [217, 62, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/tempo/QueryEditor/ServiceGraphSection.tsx:1282587102": [ - [41, 9, 37, "Do not use any type assertions.", "2278774245"], - [49, 13, 37, "Do not use any type assertions.", "2278774245"] - ], - "public/app/plugins/datasource/tempo/datasource.test.ts:440889916": [ - [35, 15, 97, "Do not use any type assertions.", "3206339370"], - [35, 27, 75, "Do not use any type assertions.", "509243894"], - [35, 109, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [75, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [109, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [111, 50, 57, "Do not use any type assertions.", "3834361977"], - [111, 104, 3, "Unexpected any. Specify a different type.", "193409811"], - [114, 7, 29, "Do not use any type assertions.", "4108674513"], - [132, 7, 29, "Do not use any type assertions.", "1876892368"], - [146, 7, 29, "Do not use any type assertions.", "891940819"], - [166, 21, 31, "Do not use any type assertions.", "2622708970"], - [166, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [168, 15, 79, "Do not use any type assertions.", "3103914825"], - [168, 91, 3, "Unexpected any. Specify a different type.", "193409811"], - [189, 15, 72, "Do not use any type assertions.", "3112405971"], - [191, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [204, 15, 72, "Do not use any type assertions.", "3112405971"], - [206, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [213, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [353, 16, 273, "Do not use any type assertions.", "275256404"], - [365, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [378, 10, 9, "Do not use any type assertions.", "3692209159"], - [378, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/tempo/datasource.ts:2870838969": [ - [135, 71, 23, "Do not use any type assertions.", "635329421"], - [135, 91, 3, "Unexpected any. Specify a different type.", "193409811"], - [149, 22, 70, "Do not use any type assertions.", "2827277152"], - [195, 41, 27, "Do not use any type assertions.", "4270099088"], - [223, 84, 3, "Unexpected any. Specify a different type.", "193409811"], - [290, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [290, 112, 3, "Unexpected any. Specify a different type.", "193409811"], - [298, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [304, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [315, 47, 23, "Do not use any type assertions.", "4133620855"], - [316, 50, 23, "Do not use any type assertions.", "4133620855"], - [396, 14, 26, "Do not use any type assertions.", "1503789431"], - [445, 13, 44, "Do not use any type assertions.", "1281436630"] - ], - "public/app/plugins/datasource/tempo/language_provider.ts:1814063185": [ - [10, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 42, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/tempo/resultTransformer.test.ts:772757025": [ - [37, 10, 9, "Do not use any type assertions.", "3692209159"], - [37, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [89, 6, 93, "Do not use any type assertions.", "872909277"], - [89, 6, 31, "Do not use any type assertions.", "4095053919"], - [100, 45, 46, "Do not use any type assertions.", "2787108654"], - [131, 6, 96, "Do not use any type assertions.", "1867506842"], - [131, 6, 34, "Do not use any type assertions.", "3993017752"] - ], - "public/app/plugins/datasource/tempo/resultTransformer.ts:126617200": [ - [86, 27, 14, "Do not use any type assertions.", "45957068"], - [143, 89, 3, "Unexpected any. Specify a different type.", "193409811"], - [153, 27, 21, "Do not use any type assertions.", "1345298940"], - [153, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [157, 29, 24, "Do not use any type assertions.", "1085107130"], - [157, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [210, 29, 23, "Do not use any type assertions.", "1219857428"], - [210, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [300, 20, 624, "Do not use any type assertions.", "1449667892"], - [323, 18, 46, "Do not use any type assertions.", "448071296"], - [385, 12, 33, "Do not use any type assertions.", "1661186262"], - [385, 42, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/tempo/testResponse.ts:827648250": [ - [1799, 62, 3586, "Do not use any type assertions.", "2454706501"], - [1986, 5, 3, "Unexpected any. Specify a different type.", "193409811"], - [1988, 60, 3345, "Do not use any type assertions.", "1286890713"], - [2165, 5, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/testdata/ConfigEditor.tsx:3493019912": [ - [5, 48, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/testdata/QueryEditor.test.tsx:3965556014": [ - [18, 14, 64, "Do not use any type assertions.", "2484234369"], - [20, 7, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/testdata/QueryEditor.tsx:89126799": [ - [33, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 48, 12, "Do not use any type assertions.", "2119826827"], - [45, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [47, 27, 12, "Do not use any type assertions.", "2119826827"], - [47, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [126, 34, 50, "Do not use any type assertions.", "653651981"], - [127, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [134, 18, 28, "Do not use any type assertions.", "1547636696"], - [141, 34, 28, "Do not use any type assertions.", "1547636696"], - [142, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [148, 40, 12, "Do not use any type assertions.", "2119826827"], - [148, 49, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/testdata/components/CSVWaveEditor.tsx:1916658309": [ - [22, 22, 28, "Do not use any type assertions.", "1547636696"] - ], - "public/app/plugins/datasource/testdata/components/PredictablePulseEditor.tsx:594937984": [ - [48, 39, 26, "Do not use any type assertions.", "2406735604"] - ], - "public/app/plugins/datasource/testdata/components/RandomWalkEditor.tsx:2355747420": [ - [33, 41, 14, "Do not use any type assertions.", "3989464655"], - [43, 22, 12, "Do not use any type assertions.", "2119826827"], - [43, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 36, 25, "Do not use any type assertions.", "820864776"] - ], - "public/app/plugins/datasource/testdata/components/RawFrameEditor.tsx:217691852": [ - [23, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/testdata/components/SimulationQueryEditor.tsx:70149409": [ - [37, 33, 21, "Do not use any type assertions.", "3479753256"], - [38, 34, 25, "Do not use any type assertions.", "836883172"], - [42, 14, 43, "Do not use any type assertions.", "1009953123"], - [73, 22, 28, "Do not use any type assertions.", "1547636696"] - ], - "public/app/plugins/datasource/testdata/components/StreamingClientEditor.tsx:1065822204": [ - [48, 38, 26, "Do not use any type assertions.", "3932475506"] - ], - "public/app/plugins/datasource/testdata/constants.ts:1331621486": [ - [2, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/testdata/datasource.ts:4243202274": [ - [80, 15, 13, "Do not use any type assertions.", "4160775600"], - [80, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 33, 13, "Do not use any type assertions.", "4160775600"], - [81, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [156, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [217, 70, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/testdata/module.tsx:2829697644": [ - [8, 14, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/testdata/nodeGraphUtils.ts:998303765": [ - [22, 11, 11, "Do not use any type assertions.", "1435517025"], - [22, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [97, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [161, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/testdata/runStreams.ts:3801982181": [ - [69, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [150, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [207, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [213, 79, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/testdata/testData/serviceMapResponse.ts:2961380989": [ - [159, 38, 41, "Do not use any type assertions.", "2506525621"], - [335, 38, 41, "Do not use any type assertions.", "2506525621"] - ], - "public/app/plugins/datasource/testdata/types.ts:3493003671": [ - [50, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/zipkin/QueryField.test.tsx:2006559102": [ - [12, 15, 22, "Do not use any type assertions.", "2726797011"], - [18, 15, 32, "Do not use any type assertions.", "261028928"], - [31, 15, 235, "Do not use any type assertions.", "3164674621"], - [32, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 80, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 15, 482, "Do not use any type assertions.", "2065677802"], - [51, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 80, 3, "Unexpected any. Specify a different type.", "193409811"], - [66, 36, 39, "Do not use any type assertions.", "3948988015"], - [74, 36, 39, "Do not use any type assertions.", "3948988015"], - [74, 77, 36, "Do not use any type assertions.", "1149037470"] - ], - "public/app/plugins/datasource/zipkin/QueryField.tsx:68037594": [ - [157, 47, 18, "Do not use any type assertions.", "483537782"], - [172, 25, 18, "Do not use any type assertions.", "833352573"], - [172, 40, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/zipkin/datasource.test.ts:2177507344": [ - [11, 6, 59, "Do not use any type assertions.", "3685154675"], - [11, 6, 49, "Do not use any type assertions.", "1184085652"], - [20, 28, 40, "Do not use any type assertions.", "2138660158"], - [20, 65, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 28, 38, "Do not use any type assertions.", "3307379491"], - [27, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 17, 76, "Do not use any type assertions.", "1540592467"], - [38, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 17, 76, "Do not use any type assertions.", "1540592467"], - [52, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [69, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 8, 9, "Do not use any type assertions.", "3692209159"], - [81, 14, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/zipkin/datasource.ts:567926638": [ - [42, 37, 27, "Do not use any type assertions.", "4270099088"], - [57, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [57, 76, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [73, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/zipkin/utils/testData.ts:4233977850": [ - [129, 46, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/zipkin/utils/testResponse.ts:535903942": [ - [37, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 65, 17, "Do not use any type assertions.", "2728931639"], - [37, 77, 3, "Unexpected any. Specify a different type.", "193409811"], - [94, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [113, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/datasource/zipkin/utils/transforms.ts:1003768863": [ - [113, 9, 235, "Do not use any type assertions.", "135520613"], - [172, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/alertGroups/AlertGroupsPanel.test.tsx:4189520428": [ - [24, 6, 59, "Do not use any type assertions.", "3685154675"], - [24, 6, 49, "Do not use any type assertions.", "1184085652"], - [61, 7, 46, "Do not use any type assertions.", "765668182"], - [63, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 15, 34, "Do not use any type assertions.", "3760901310"], - [68, 15, 13, "Do not use any type assertions.", "2146830713"], - [82, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [83, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/alertlist/AlertList.tsx:277532755": [ - [22, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [90, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [189, 50, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/alertlist/AlertListMigration.test.ts:2886820502": [ - [7, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 54, 19, "Do not use any type assertions.", "2735740472"], - [53, 84, 3, "Unexpected any. Specify a different type.", "193409811"], - [80, 54, 19, "Do not use any type assertions.", "2735740472"], - [112, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [123, 54, 19, "Do not use any type assertions.", "2735740472"] - ], - "public/app/plugins/panel/alertlist/AlertListMigrationHandler.ts:2990320020": [ - [5, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 60, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/alertlist/UnifiedAlertList.tsx:1030222912": [ - [151, 7, 28, "Do not use any type assertions.", "3521399142"] - ], - "public/app/plugins/panel/alertlist/unified-alerting/UngroupedView.tsx:1842562151": [ - [35, 24, 63, "Do not use any type assertions.", "2849214645"] - ], - "public/app/plugins/panel/annolist/AnnoListPanel.test.tsx:3195309224": [ - [15, 6, 59, "Do not use any type assertions.", "3685154675"], - [15, 6, 49, "Do not use any type assertions.", "1184085652"], - [32, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [55, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [65, 9, 50, "Do not use any type assertions.", "3291709398"], - [67, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 17, 34, "Do not use any type assertions.", "3760901310"], - [72, 17, 13, "Do not use any type assertions.", "2146830713"] - ], - "public/app/plugins/panel/annolist/AnnoListPanel.tsx:4044440137": [ - [92, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [141, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [180, 23, 20, "Do not use any type assertions.", "4252531529"] - ], - "public/app/plugins/panel/annolist/module.tsx:2172084857": [ - [18, 19, 129, "Do not use any type assertions.", "1351131570"], - [21, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 19, 119, "Do not use any type assertions.", "1582329614"], - [33, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [76, 19, 115, "Do not use any type assertions.", "2596251668"], - [79, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 93, 3, "Unexpected any. Specify a different type.", "193409811"], - [100, 13, 26, "Do not use any type assertions.", "3899870152"] - ], - "public/app/plugins/panel/barchart/BarChartPanel.tsx:3563597304": [ - [269, 17, 42, "Do not use any type assertions.", "3475242400"], - [269, 17, 29, "Do not use any type assertions.", "1043697592"] - ], - "public/app/plugins/panel/barchart/TickSpacingEditor.tsx:335508426": [ - [28, 69, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/barchart/bars.ts:4025264055": [ - [51, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [409, 7, 17, "Do not use any type assertions.", "3632921021"], - [464, 23, 11, "Do not use any type assertions.", "319541530"], - [464, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [466, 23, 11, "Do not use any type assertions.", "319541530"], - [466, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [474, 22, 33, "Do not use any type assertions.", "3146060940"] - ], - "public/app/plugins/panel/barchart/module.tsx:780565076": [ - [70, 95, 9, "Do not use any type assertions.", "3692209159"], - [70, 101, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/barchart/quadtree.ts:1396798392": [ - [4, 78, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/barchart/suggestions.ts:1788398075": [ - [13, 16, 97, "Do not use any type assertions.", "3665258785"], - [16, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/barchart/utils.test.ts:2336954980": [ - [71, 66, 9, "Do not use any type assertions.", "3692209159"], - [71, 72, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 6, 42, "Do not use any type assertions.", "3372195270"], - [81, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [159, 69, 38, "Do not use any type assertions.", "2727137466"], - [159, 104, 3, "Unexpected any. Specify a different type.", "193409811"], - [172, 71, 38, "Do not use any type assertions.", "2727137466"], - [172, 106, 3, "Unexpected any. Specify a different type.", "193409811"], - [185, 71, 38, "Do not use any type assertions.", "2727137466"], - [185, 106, 3, "Unexpected any. Specify a different type.", "193409811"], - [198, 71, 38, "Do not use any type assertions.", "2727137466"], - [198, 106, 3, "Unexpected any. Specify a different type.", "193409811"], - [223, 77, 68, "Do not use any type assertions.", "3630436647"], - [225, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [232, 78, 67, "Do not use any type assertions.", "2706805164"], - [234, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/barchart/utils.ts:3971557348": [ - [54, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 59, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/bargauge/BarGaugeMigrations.test.ts:3478157682": [ - [6, 18, 888, "Do not use any type assertions.", "2072786437"], - [48, 53, 19, "Do not use any type assertions.", "2735740472"], - [51, 12, 12, "Do not use any type assertions.", "1619708599"], - [51, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/bargauge/BarGaugePanel.test.tsx:1597135392": [ - [102, 16, 9, "Do not use any type assertions.", "3692209159"], - [102, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/bargauge/BarGaugePanel.tsx:479025712": [ - [114, 75, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/candlestick/CandlestickPanel.tsx:3928129934": [ - [116, 26, 33, "Do not use any type assertions.", "1940217301"], - [163, 20, 27, "Do not use any type assertions.", "2091836047"], - [163, 21, 11, "Do not use any type assertions.", "672877327"], - [163, 29, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/candlestick/fields.test.ts:734234717": [ - [8, 38, 24, "Do not use any type assertions.", "1806924006"], - [124, 40, 94, "Do not use any type assertions.", "89499567"], - [186, 40, 96, "Do not use any type assertions.", "2643461470"], - [248, 40, 95, "Do not use any type assertions.", "2146438436"] - ], - "public/app/plugins/panel/candlestick/module.tsx:3212118941": [ - [26, 20, 211, "Do not use any type assertions.", "2313351983"], - [32, 21, 149, "Do not use any type assertions.", "1973127165"], - [37, 24, 170, "Do not use any type assertions.", "1318935259"], - [52, 20, 23, "Do not use any type assertions.", "2078201556"] - ], - "public/app/plugins/panel/candlestick/utils.ts:1960311121": [ - [125, 10, 21, "Do not use any type assertions.", "2762377771"], - [126, 10, 19, "Do not use any type assertions.", "2663605681"], - [127, 10, 21, "Do not use any type assertions.", "2469295302"], - [138, 10, 18, "Do not use any type assertions.", "516790078"], - [139, 10, 16, "Do not use any type assertions.", "3831122660"], - [140, 10, 18, "Do not use any type assertions.", "3407005619"], - [183, 15, 19, "Do not use any type assertions.", "2663605681"], - [186, 15, 21, "Do not use any type assertions.", "2469295302"], - [189, 15, 21, "Do not use any type assertions.", "2762377771"], - [194, 15, 16, "Do not use any type assertions.", "3831122660"], - [197, 15, 18, "Do not use any type assertions.", "3407005619"], - [200, 15, 18, "Do not use any type assertions.", "516790078"] - ], - "public/app/plugins/panel/canvas/CanvasContextMenu.tsx:1200380152": [ - [31, 33, 47, "Do not use any type assertions.", "3512730894"] - ], - "public/app/plugins/panel/canvas/CanvasPanel.tsx:599539898": [ - [39, 31, 18, "Do not use any type assertions.", "3890263992"], - [81, 24, 28, "Do not use any type assertions.", "4099457225"] - ], - "public/app/plugins/panel/canvas/InlineEdit.tsx:4283538040": [ - [36, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 47, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/canvas/InlineEditBody.tsx:2585809618": [ - [26, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 94, 3, "Unexpected any. Specify a different type.", "193409811"], - [65, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [66, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [90, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [91, 40, 20, "Do not use any type assertions.", "481937809"], - [91, 57, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/canvas/editor/APIEditor.tsx:1441855925": [ - [12, 92, 26, "Do not use any type assertions.", "51717362"], - [14, 5, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 69, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/canvas/editor/LayerElementListEditor.tsx:3239725063": [ - [20, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 30, 44, "Do not use any type assertions.", "712744497"], - [49, 20, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/canvas/editor/PlacementEditor.tsx:3236159461": [ - [33, 53, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/canvas/editor/elementEditor.tsx:984525295": [ - [27, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 14, 16, "Do not use any type assertions.", "2939667099"], - [59, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/canvas/editor/layerEditor.tsx:975717531": [ - [24, 25, 24, "Do not use any type assertions.", "3274929259"], - [52, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 34, 14, "Do not use any type assertions.", "2244802944"], - [79, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [80, 30, 14, "Do not use any type assertions.", "2244802944"], - [80, 41, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/dashlist/module.tsx:3488104479": [ - [88, 73, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/debug/CursorView.tsx:1482143737": [ - [66, 22, 13, "Do not use any type assertions.", "2748726293"], - [66, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/debug/EventBusLogger.tsx:3356031256": [ - [26, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [54, 21, 19, "Do not use any type assertions.", "1200709783"], - [54, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/debug/RenderInfoViewer.tsx:2867503780": [ - [57, 46, 18, "Do not use any type assertions.", "3358449386"] - ], - "public/app/plugins/panel/gauge/GaugeMigrations.test.ts:3862496446": [ - [6, 18, 1440, "Do not use any type assertions.", "1488404351"], - [80, 46, 19, "Do not use any type assertions.", "2735740472"], - [90, 12, 19, "Do not use any type assertions.", "2735740472"], - [143, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [157, 18, 16, "Do not use any type assertions.", "388222280"] - ], - "public/app/plugins/panel/gauge/GaugeMigrations.ts:1032933584": [ - [12, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 15, 85, "Do not use any type assertions.", "2550200440"] - ], - "public/app/plugins/panel/geomap/GeomapPanel.tsx:2666663711": [ - [69, 31, 18, "Do not use any type assertions.", "3890263992"], - [97, 24, 28, "Do not use any type assertions.", "4099457225"], - [266, 17, 37, "Do not use any type assertions.", "2544440943"], - [266, 17, 20, "Do not use any type assertions.", "3781735909"], - [352, 18, 24, "Do not use any type assertions.", "181784893"], - [352, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [371, 35, 24, "Do not use any type assertions.", "47548872"], - [375, 34, 12, "Do not use any type assertions.", "3529972290"], - [375, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [384, 44, 18, "Do not use any type assertions.", "457862215"], - [405, 34, 35, "Do not use any type assertions.", "2795303183"], - [405, 35, 8, "Do not use any type assertions.", "1000026477"], - [405, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [520, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [537, 5, 18, "Do not use any type assertions.", "469843579"], - [537, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [573, 25, 21, "Do not use any type assertions.", "650165461"], - [573, 42, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/geomap/components/DataHoverRows.tsx:641704907": [ - [65, 16, 33, "Do not use any type assertions.", "2799878314"] - ], - "public/app/plugins/panel/geomap/components/DataHoverView.tsx:2298521936": [ - [35, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/geomap/editor/GeomapStyleRulesEditor.tsx:355286202": [ - [11, 82, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 87, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 86, 34, "Do not use any type assertions.", "1257118222"], - [46, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/geomap/editor/LayersEditor.tsx:3427889218": [ - [14, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [52, 47, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/geomap/editor/MapViewEditor.tsx:1791123436": [ - [11, 66, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/geomap/editor/StyleRuleEditor.tsx:2030469805": [ - [31, 73, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 78, 3, "Unexpected any. Specify a different type.", "193409811"], - [195, 12, 133, "Do not use any type assertions.", "1788850073"], - [200, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/geomap/editor/layerEditor.tsx:3951471086": [ - [28, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/geomap/layers/basemaps/carto.ts:3207323149": [ - [37, 18, 19, "Do not use any type assertions.", "2831497983"] - ], - "public/app/plugins/panel/geomap/layers/basemaps/esri.ts:2780995517": [ - [69, 39, 16, "Do not use any type assertions.", "2424858948"] - ], - "public/app/plugins/panel/geomap/layers/registry.ts:1585837540": [ - [39, 69, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/geomap/migrations.test.ts:2347734178": [ - [14, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 18, 16, "Do not use any type assertions.", "388222280"], - [115, 18, 578, "Do not use any type assertions.", "495293879"], - [115, 18, 564, "Do not use any type assertions.", "4258938716"], - [140, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/geomap/migrations.ts:1115172016": [ - [28, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [90, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 31, 24, "Do not use any type assertions.", "3914131866"], - [98, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [104, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/geomap/module.tsx:2632823621": [ - [42, 18, 44, "Do not use any type assertions.", "2803830839"] - ], - "public/app/plugins/panel/geomap/style/utils.test.ts:3368608151": [ - [33, 19, 11, "Do not use any type assertions.", "319541530"], - [33, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/geomap/types.ts:1512545097": [ - [90, 41, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/geomap/utils/selection.ts:177287346": [ - [2, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/geomap/view.ts:547733112": [ - [16, 8, 25, "Do not use any type assertions.", "459066573"], - [21, 8, 26, "Do not use any type assertions.", "3208966452"], - [55, 8, 33, "Do not use any type assertions.", "2751540711"] - ], - "public/app/plugins/panel/gettingstarted/GettingStarted.tsx:573115148": [ - [79, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/gettingstarted/components/Step.tsx:1870095353": [ - [29, 49, 24, "Do not use any type assertions.", "3136223651"] - ], - "public/app/plugins/panel/graph/GraphContextMenuCtrl.ts:3089249312": [ - [5, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/GraphMigrations.test.ts:3282531231": [ - [6, 18, 2472, "Do not use any type assertions.", "338831987"], - [55, 15, 539, "Do not use any type assertions.", "2037639798"], - [55, 15, 524, "Do not use any type assertions.", "367742648"], - [120, 46, 19, "Do not use any type assertions.", "2735740472"], - [121, 24, 47, "Do not use any type assertions.", "376550359"], - [121, 25, 12, "Do not use any type assertions.", "1619708599"], - [121, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [131, 18, 250, "Do not use any type assertions.", "1064975162"], - [131, 18, 236, "Do not use any type assertions.", "3592514897"], - [146, 31, 19, "Do not use any type assertions.", "2735740472"], - [147, 24, 47, "Do not use any type assertions.", "376550359"], - [147, 25, 12, "Do not use any type assertions.", "1619708599"], - [147, 34, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/GraphMigrations.ts:4037126903": [ - [5, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 76, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 33, 31, "Do not use any type assertions.", "2592978588"] - ], - "public/app/plugins/panel/graph/Legend/Legend.tsx:3526861258": [ - [14, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [95, 19, 187, "Do not use any type assertions.", "3203397108"], - [109, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [188, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [189, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [260, 29, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/Legend/LegendSeriesItem.tsx:462614305": [ - [14, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [130, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [216, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/align_yaxes.ts:2026331733": [ - [5, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [105, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [109, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/annotation_tooltip.ts:163107101": [ - [10, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/axes_editor.ts:4031433550": [ - [5, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 21, 24, "Do not use any type assertions.", "1383913339"], - [51, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/data_processor.ts:140288660": [ - [14, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [145, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [154, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [170, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/event_editor.ts:2882796375": [ - [16, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [91, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/event_manager.ts:2471483155": [ - [30, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [49, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [54, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [54, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [155, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [155, 75, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/graph.ts:3310207418": [ - [65, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [69, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [70, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 81, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 91, 3, "Unexpected any. Specify a different type.", "193409811"], - [122, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [196, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [202, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [257, 20, 71, "Do not use any type assertions.", "1504235577"], - [268, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [268, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [303, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [335, 46, 59, "Do not use any type assertions.", "1399684711"], - [335, 102, 3, "Unexpected any. Specify a different type.", "193409811"], - [341, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [383, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [412, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [425, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [432, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [445, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [485, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [495, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [512, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [512, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [565, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [582, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [588, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [651, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [651, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [684, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [702, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [718, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [776, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [797, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [797, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [836, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [844, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [844, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [877, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [925, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [948, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [948, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [965, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [969, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/graph_tooltip.d.ts:1576685019": [ - [0, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/graph_tooltip.ts:4183530575": [ - [12, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 82, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 100, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 94, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [165, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [165, 87, 3, "Unexpected any. Specify a different type.", "193409811"], - [173, 42, 10, "Do not use any type assertions.", "3459414797"], - [173, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [178, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [178, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [178, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [200, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [200, 31, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/histogram.ts:3622208037": [ - [32, 106, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 3, 3, "Unexpected any. Specify a different type.", "193409811"], - [57, 27, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/jquery.flot.events.ts:3370109374": [ - [52, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [80, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [139, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [140, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [141, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [142, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [143, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [144, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [145, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [150, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [152, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [195, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [196, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [197, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [198, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [201, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [231, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [232, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [233, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [234, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [237, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [248, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [255, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [270, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [270, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [331, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [331, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [331, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [436, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [462, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [462, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [462, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [480, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [480, 81, 3, "Unexpected any. Specify a different type.", "193409811"], - [571, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [596, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [596, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [596, 79, 3, "Unexpected any. Specify a different type.", "193409811"], - [596, 90, 3, "Unexpected any. Specify a different type.", "193409811"], - [614, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [636, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [636, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [660, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [666, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [666, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [673, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [690, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/module.ts:2663356615": [ - [36, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [49, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [147, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [184, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [188, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [192, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [208, 5, 22, "Do not use any type assertions.", "1917861168"], - [208, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [211, 7, 22, "Do not use any type assertions.", "1917861168"], - [211, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [298, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [304, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [310, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [310, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [316, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [316, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [317, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [326, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [330, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/series_overrides_ctrl.ts:2579635488": [ - [6, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 79, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 74, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 74, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [55, 37, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/specs/data_processor.test.ts:3651132688": [ - [5, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/specs/graph.test.ts:2003285807": [ - [29, 12, 9, "Do not use any type assertions.", "3692209159"], - [29, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [43, 22, 64, "Do not use any type assertions.", "3552776194"], - [47, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 4, 1119, "Do not use any type assertions.", "22905176"], - [97, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [127, 6, 39, "Do not use any type assertions.", "1195076675"], - [129, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [136, 26, 9, "Do not use any type assertions.", "3692209159"], - [136, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [136, 41, 9, "Do not use any type assertions.", "3692209159"], - [136, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [136, 64, 88, "Do not use any type assertions.", "1231463515"], - [140, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [1351, 4, 49, "Do not use any type assertions.", "1099684144"], - [1351, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [1352, 4, 9, "Do not use any type assertions.", "3692209159"], - [1352, 10, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/specs/graph_ctrl.test.ts:333554474": [ - [33, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 14, 9, "Do not use any type assertions.", "3692209159"], - [41, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [44, 36, 15, "Do not use any type assertions.", "3302915971"], - [44, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [101, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/specs/graph_tooltip.test.ts:1540008850": [ - [6, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/specs/histogram.test.ts:1918538591": [ - [4, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [49, 14, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/specs/series_override_ctrl.test.ts:925994791": [ - [4, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 32, 12, "Do not use any type assertions.", "4107961265"] - ], - "public/app/plugins/panel/graph/specs/threshold_manager.test.ts:1564753622": [ - [7, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 67, 3, "Unexpected any. Specify a different type.", "193409811"], - [91, 68, 3, "Unexpected any. Specify a different type.", "193409811"], - [110, 61, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/specs/time_region_manager.test.ts:3844932500": [ - [5, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [47, 87, 3, "Unexpected any. Specify a different type.", "193409811"], - [55, 87, 3, "Unexpected any. Specify a different type.", "193409811"], - [66, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [125, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [152, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [179, 75, 3, "Unexpected any. Specify a different type.", "193409811"], - [206, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [233, 61, 3, "Unexpected any. Specify a different type.", "193409811"], - [260, 59, 3, "Unexpected any. Specify a different type.", "193409811"], - [287, 69, 3, "Unexpected any. Specify a different type.", "193409811"], - [305, 69, 3, "Unexpected any. Specify a different type.", "193409811"], - [323, 95, 3, "Unexpected any. Specify a different type.", "193409811"], - [347, 71, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/threshold_manager.ts:1638035193": [ - [9, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 74, 3, "Unexpected any. Specify a different type.", "193409811"], - [35, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [90, 27, 21, "Do not use any type assertions.", "4170053750"], - [90, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [119, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [136, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [163, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [163, 38, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/thresholds_form.ts:2449768094": [ - [5, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/time_region_manager.ts:1293043074": [ - [11, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [74, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [76, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [93, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [99, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [235, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/time_regions_form.ts:3849973633": [ - [5, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 30, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/graph/utils.ts:1760782600": [ - [33, 47, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/heatmap-new/HeatmapHoverView.tsx:4206969103": [ - [32, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 95, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/heatmap-new/HeatmapPanel.tsx:1036460904": [ - [72, 26, 79, "Do not use any type assertions.", "2972403194"], - [74, 26, 54, "Do not use any type assertions.", "2184934679"], - [113, 24, 103, "Do not use any type assertions.", "1385046468"], - [189, 45, 13, "Do not use any type assertions.", "1645847559"], - [189, 55, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/heatmap-new/fields.test.ts:2095719388": [ - [7, 32, 18, "Do not use any type assertions.", "739464119"] - ], - "public/app/plugins/panel/heatmap-new/migrations.test.ts:1346995470": [ - [15, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 18, 16, "Do not use any type assertions.", "388222280"] - ], - "public/app/plugins/panel/heatmap-new/migrations.ts:784553340": [ - [43, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [128, 22, 27, "Do not use any type assertions.", "3349635193"], - [160, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/heatmap-new/module.tsx:126397679": [ - [27, 16, 30, "Do not use any type assertions.", "3478399522"], - [27, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [28, 18, 30, "Do not use any type assertions.", "3478399522"], - [28, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [45, 35, 37, "Do not use any type assertions.", "1961056471"] - ], - "public/app/plugins/panel/heatmap-new/palettes.ts:4110363347": [ - [87, 39, 23, "Do not use any type assertions.", "3906212682"], - [87, 59, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/heatmap-new/utils.ts:4263436965": [ - [64, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [116, 21, 17, "Do not use any type assertions.", "3632921021"], - [210, 27, 200, "Do not use any type assertions.", "3195446138"], - [215, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [259, 23, 53, "Do not use any type assertions.", "4087268626"], - [286, 49, 51, "Do not use any type assertions.", "4216242190"], - [286, 49, 28, "Do not use any type assertions.", "1631991143"], - [396, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [455, 17, 1140, "Do not use any type assertions.", "423257258"], - [475, 14, 190, "Do not use any type assertions.", "4120382085"], - [486, 14, 55, "Do not use any type assertions.", "2123957774"], - [486, 14, 43, "Do not use any type assertions.", "3195961945"], - [495, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [513, 17, 343, "Do not use any type assertions.", "2352933120"], - [527, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [628, 19, 27, "Do not use any type assertions.", "3603045978"], - [628, 19, 15, "Do not use any type assertions.", "3099372941"], - [629, 19, 27, "Do not use any type assertions.", "3664280731"], - [629, 19, 15, "Do not use any type assertions.", "2963010956"], - [630, 23, 27, "Do not use any type assertions.", "1493467224"], - [630, 23, 15, "Do not use any type assertions.", "2572578447"], - [734, 25, 30, "Do not use any type assertions.", "1186575399"], - [734, 25, 16, "Do not use any type assertions.", "1728826198"], - [804, 22, 27, "Do not use any type assertions.", "3603045978"], - [804, 22, 15, "Do not use any type assertions.", "3099372941"], - [805, 22, 27, "Do not use any type assertions.", "3664280731"], - [805, 22, 15, "Do not use any type assertions.", "2963010956"], - [806, 22, 27, "Do not use any type assertions.", "1493467224"], - [806, 22, 15, "Do not use any type assertions.", "2572578447"], - [807, 23, 27, "Do not use any type assertions.", "1554701977"], - [807, 23, 15, "Do not use any type assertions.", "2436216462"] - ], - "public/app/plugins/panel/heatmap/axes_editor.ts:3923458214": [ - [1, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [2, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 41, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/heatmap/color_legend.ts:3585235020": [ - [26, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [62, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [97, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [110, 25, 32, "Do not use any type assertions.", "3363799010"], - [110, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [141, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 25, 32, "Do not use any type assertions.", "3363799010"], - [151, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [182, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [183, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [215, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [220, 23, 32, "Do not use any type assertions.", "3363799010"], - [220, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [253, 25, 32, "Do not use any type assertions.", "3363799010"], - [253, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [256, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [287, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [287, 23, 18, "Do not use any type assertions.", "3968413993"], - [287, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [295, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [296, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/heatmap/color_scale.ts:433524801": [ - [3, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 106, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 114, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 3, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/heatmap/display_editor.ts:1605320932": [ - [1, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [2, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/heatmap/heatmap_ctrl.ts:813415896": [ - [29, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [119, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [120, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [121, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [123, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [124, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [126, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [133, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [165, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [348, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [378, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [378, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [378, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [378, 48, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/heatmap/heatmap_data_converter.ts:80625030": [ - [14, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [94, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [142, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [146, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [156, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [233, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [244, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [244, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [268, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [292, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [316, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [316, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [363, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [363, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [434, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [434, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [477, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [477, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/heatmap/heatmap_tooltip.ts:2789219159": [ - [14, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [82, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [153, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [153, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [153, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [153, 69, 3, "Unexpected any. Specify a different type.", "193409811"], - [159, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [162, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [168, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [176, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [176, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [176, 56, 3, "Unexpected any. Specify a different type.", "193409811"], - [235, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [239, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [242, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [247, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [247, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [247, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [270, 56, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/heatmap/rendering.ts:3023444147": [ - [32, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 75, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [51, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [52, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [54, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [55, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [57, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [58, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [60, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [61, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [62, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 60, 3, "Unexpected any. Specify a different type.", "193409811"], - [67, 79, 3, "Unexpected any. Specify a different type.", "193409811"], - [104, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [131, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [148, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [420, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [442, 55, 3, "Unexpected any. Specify a different type.", "193409811"], - [444, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [524, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [550, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [554, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [560, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [572, 28, 3, "Unexpected any. Specify a different type.", "193409811"], - [594, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [606, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [659, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [667, 29, 3, "Unexpected any. Specify a different type.", "193409811"], - [675, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [682, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [718, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [739, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [739, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [739, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [739, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [742, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [762, 45, 10, "Do not use any type assertions.", "3459414797"], - [762, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [820, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/heatmap/specs/heatmap_ctrl.test.ts:4128755898": [ - [6, 14, 9, "Do not use any type assertions.", "3692209159"], - [6, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 50, 13, "Do not use any type assertions.", "2566260947"], - [34, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [60, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [81, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/heatmap/specs/heatmap_data_converter.test.ts:3020906972": [ - [15, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [74, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [121, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [234, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/heatmap/types.ts:2221161687": [ - [2, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/histogram/Histogram.tsx:3993177092": [ - [130, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [223, 26, 9, "Do not use any type assertions.", "3815122951"], - [223, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [257, 23, 11, "Do not use any type assertions.", "319541530"], - [257, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [321, 23, 11, "Do not use any type assertions.", "319541530"], - [321, 31, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/icon/IconPanel.tsx:3229106771": [ - [33, 46, 25, "Do not use any type assertions.", "1711465209"], - [33, 68, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/icon/module.tsx:3436434683": [ - [33, 20, 31, "Do not use any type assertions.", "2174163364"], - [33, 48, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/live/LiveChannelEditor.tsx:3327779311": [ - [15, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 26, 152, "Do not use any type assertions.", "1319110163"], - [55, 19, 30, "Do not use any type assertions.", "2243881570"], - [55, 19, 20, "Do not use any type assertions.", "3781735909"], - [56, 14, 30, "Do not use any type assertions.", "2243881570"], - [56, 14, 20, "Do not use any type assertions.", "3781735909"], - [62, 19, 111, "Do not use any type assertions.", "1675446560"], - [64, 12, 30, "Do not use any type assertions.", "2243881570"], - [64, 12, 20, "Do not use any type assertions.", "3781735909"], - [75, 19, 89, "Do not use any type assertions.", "2972387960"] - ], - "public/app/plugins/panel/live/LivePanel.tsx:1065750103": [ - [30, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [182, 32, 329, "Do not use any type assertions.", "334207914"], - [194, 22, 111, "Do not use any type assertions.", "503082886"], - [197, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/live/types.ts:468842904": [ - [13, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/logs/LogsPanel.test.tsx:1980330429": [ - [100, 16, 495, "Do not use any type assertions.", "2521048876"], - [100, 16, 477, "Do not use any type assertions.", "1400793553"] - ], - "public/app/plugins/panel/logs/LogsPanel.tsx:4080293044": [ - [95, 41, 28, "Do not use any type assertions.", "3428864287"] - ], - "public/app/plugins/panel/news/utils.test.ts:1075350837": [ - [25, 24, 2416, "Do not use any type assertions.", "1190328332"] - ], - "public/app/plugins/panel/nodeGraph/Edge.tsx:2960703341": [ - [15, 29, 48, "Do not use any type assertions.", "2120930245"], - [32, 33, 24, "Do not use any type assertions.", "1032455982"], - [32, 70, 24, "Do not use any type assertions.", "1618014818"] - ], - "public/app/plugins/panel/nodeGraph/EdgeLabel.tsx:1493938445": [ - [32, 29, 48, "Do not use any type assertions.", "2120930245"] - ], - "public/app/plugins/panel/nodeGraph/Legend.test.tsx:2799280474": [ - [15, 6, 318, "Do not use any type assertions.", "1998907975"], - [17, 18, 43, "Do not use any type assertions.", "3333482165"], - [17, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 23, 43, "Do not use any type assertions.", "4062169270"], - [18, 63, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 10, 103, "Do not use any type assertions.", "3935151357"], - [20, 110, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 12, 33, "Do not use any type assertions.", "3391279780"] - ], - "public/app/plugins/panel/nodeGraph/Legend.tsx:1268135127": [ - [76, 17, 71, "Do not use any type assertions.", "3338237457"] - ], - "public/app/plugins/panel/nodeGraph/Node.tsx:3389284631": [ - [172, 16, 23, "Do not use any type assertions.", "522368601"] - ], - "public/app/plugins/panel/nodeGraph/NodeGraph.test.tsx:1151389009": [ - [237, 16, 29, "Do not use any type assertions.", "3573448706"] - ], - "public/app/plugins/panel/nodeGraph/NodeGraph.tsx:2094573586": [ - [176, 7, 47, "Do not use any type assertions.", "4262176341"], - [332, 13, 21, "Do not use any type assertions.", "1024434472"], - [333, 13, 21, "Do not use any type assertions.", "289303780"], - [355, 11, 21, "Do not use any type assertions.", "1024434472"], - [356, 11, 21, "Do not use any type assertions.", "289303780"] - ], - "public/app/plugins/panel/nodeGraph/ViewControls.tsx:1224159931": [ - [27, 59, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/nodeGraph/layout.test.ts:1938392112": [ - [5, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/nodeGraph/layout.ts:2480125429": [ - [92, 22, 26, "Do not use any type assertions.", "3179762225"], - [111, 26, 33, "Do not use any type assertions.", "368186320"] - ], - "public/app/plugins/panel/nodeGraph/useCategorizeFrames.ts:188281746": [ - [21, 6, 70, "Do not use any type assertions.", "933181280"] - ], - "public/app/plugins/panel/nodeGraph/usePanning.ts:887807615": [ - [186, 7, 12, "Do not use any type assertions.", "881223021"], - [186, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [187, 14, 19, "Do not use any type assertions.", "1347340882"], - [190, 14, 19, "Do not use any type assertions.", "1208927574"] - ], - "public/app/plugins/panel/nodeGraph/useZoom.ts:758274585": [ - [48, 25, 19, "Do not use any type assertions.", "921312868"] - ], - "public/app/plugins/panel/nodeGraph/utils.test.ts:2282439845": [ - [254, 51, 21, "Do not use any type assertions.", "3576276018"] - ], - "public/app/plugins/panel/nodeGraph/utils.ts:3638967852": [ - [129, 13, 289, "Do not use any type assertions.", "3614053404"], - [193, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [255, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/piechart/PieChart.tsx:1361550264": [ - [201, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [217, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/piechart/migrations.test.ts:922309096": [ - [8, 18, 16, "Do not use any type assertions.", "388222280"], - [15, 18, 29, "Do not use any type assertions.", "2708403940"], - [41, 18, 29, "Do not use any type assertions.", "2708403940"], - [51, 18, 29, "Do not use any type assertions.", "2708403940"], - [64, 18, 29, "Do not use any type assertions.", "2708403940"] - ], - "public/app/plugins/panel/piechart/migrations.ts:2645273282": [ - [6, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 15, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/piechart/suggestions.ts:1406588475": [ - [17, 16, 70, "Do not use any type assertions.", "1339483802"], - [20, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/stat/StatMigrations.test.ts:1696748072": [ - [8, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 18, 16, "Do not use any type assertions.", "388222280"], - [24, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 18, 16, "Do not use any type assertions.", "388222280"], - [40, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [48, 18, 16, "Do not use any type assertions.", "388222280"], - [54, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [60, 18, 16, "Do not use any type assertions.", "388222280"], - [66, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 16, 16, "Do not use any type assertions.", "388222280"], - [83, 12, 16, "Do not use any type assertions.", "388222280"] - ], - "public/app/plugins/panel/stat/StatMigrations.ts:3417398143": [ - [8, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 18, 89, "Do not use any type assertions.", "682363245"] - ], - "public/app/plugins/panel/stat/types.ts:3737180727": [ - [65, 12, 57, "Do not use any type assertions.", "440836321"], - [65, 66, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/state-timeline/TimelineChart.tsx:2812729233": [ - [36, 31, 18, "Do not use any type assertions.", "3890263992"], - [38, 62, 3, "Unexpected any. Specify a different type.", "193409811"], - [52, 24, 28, "Do not use any type assertions.", "4099457225"] - ], - "public/app/plugins/panel/state-timeline/migrations.test.ts:1433329305": [ - [6, 18, 16, "Do not use any type assertions.", "388222280"] - ], - "public/app/plugins/panel/state-timeline/migrations.ts:1710036125": [ - [8, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 16, 40, "Do not use any type assertions.", "1690487699"], - [36, 22, 17, "Do not use any type assertions.", "127493185"], - [38, 27, 16, "Do not use any type assertions.", "1026575937"], - [45, 21, 16, "Do not use any type assertions.", "1026575937"], - [46, 22, 17, "Do not use any type assertions.", "1780507223"], - [62, 21, 16, "Do not use any type assertions.", "1026575937"] - ], - "public/app/plugins/panel/state-timeline/timeline.ts:1723686742": [ - [47, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [137, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [530, 13, 32, "Do not use any type assertions.", "1901514128"], - [544, 12, 28, "Do not use any type assertions.", "1255945455"] - ], - "public/app/plugins/panel/state-timeline/types.ts:3228907517": [ - [20, 62, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/state-timeline/utils.test.ts:4199205996": [ - [17, 9, 9, "Do not use any type assertions.", "3692209159"], - [17, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [90, 18, 147, "Do not use any type assertions.", "893298400"], - [94, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [100, 18, 139, "Do not use any type assertions.", "3045277193"], - [104, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [110, 18, 150, "Do not use any type assertions.", "1747702495"], - [114, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [120, 18, 291, "Do not use any type assertions.", "3141576499"], - [136, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [142, 18, 106, "Do not use any type assertions.", "328761055"], - [146, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [177, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [234, 53, 46, "Do not use any type assertions.", "697874192"], - [234, 96, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/state-timeline/utils.ts:2030937583": [ - [80, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [212, 19, 48, "Do not use any type assertions.", "1573487560"], - [263, 26, 11, "Do not use any type assertions.", "319541530"], - [263, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [287, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [287, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [289, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/table-old/column_options.ts:3218485965": [ - [5, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [76, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [114, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [126, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [133, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [141, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [146, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [154, 24, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/table-old/editor.ts:622652234": [ - [6, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 49, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [92, 47, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/table-old/module.ts:3595626038": [ - [19, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [57, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [57, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [57, 67, 3, "Unexpected any. Specify a different type.", "193409811"], - [57, 91, 3, "Unexpected any. Specify a different type.", "193409811"], - [71, 71, 3, "Unexpected any. Specify a different type.", "193409811"], - [72, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [88, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [98, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [110, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [148, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [148, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [167, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [167, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [168, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [188, 27, 3, "Unexpected any. Specify a different type.", "193409811"], - [239, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [260, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [270, 38, 49, "Do not use any type assertions.", "1240031247"], - [270, 38, 15, "Do not use any type assertions.", "363922340"], - [270, 82, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/table-old/renderer.ts:2869672175": [ - [22, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [29, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [84, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [106, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [110, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [120, 34, 8, "Do not use any type assertions.", "1788342839"], - [120, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [138, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [138, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [194, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [194, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [208, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [213, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [241, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [249, 59, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/table-old/specs/renderer.test.ts:3638012257": [ - [11, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 19, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/table-old/specs/transformers.test.ts:2341841046": [ - [3, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [421, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [431, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [442, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [486, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [496, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [507, 18, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/table-old/transformers.ts:1857002339": [ - [10, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 46, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [66, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [177, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [193, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [218, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [244, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [280, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [280, 48, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/table-old/types.ts:905513491": [ - [5, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [27, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [33, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [36, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [38, 16, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/table/migrations.test.ts:2084798246": [ - [55, 25, 16, "Do not use any type assertions.", "388222280"], - [58, 22, 16, "Do not use any type assertions.", "388222280"], - [61, 30, 16, "Do not use any type assertions.", "388222280"], - [64, 23, 16, "Do not use any type assertions.", "388222280"], - [128, 18, 16, "Do not use any type assertions.", "388222280"] - ], - "public/app/plugins/panel/table/migrations.ts:145557382": [ - [21, 31, 12, "Do not use any type assertions.", "1619708599"], - [21, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [75, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [76, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [222, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [224, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [230, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [232, 52, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/table/module.tsx:464655817": [ - [129, 16, 57, "Do not use any type assertions.", "440836321"], - [129, 70, 3, "Unexpected any. Specify a different type.", "193409811"], - [150, 31, 29, "Do not use any type assertions.", "1753772827"], - [150, 57, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/text/TextPanelEditor.tsx:1261010451": [ - [15, 61, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/text/textPanelMigrationHandler.test.ts:81346811": [ - [8, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [42, 21, 34, "Do not use any type assertions.", "3760901310"], - [42, 21, 13, "Do not use any type assertions.", "2146830713"], - [64, 19, 29, "Do not use any type assertions.", "19304750"], - [64, 19, 17, "Do not use any type assertions.", "2051682914"], - [67, 21, 34, "Do not use any type assertions.", "3760901310"], - [67, 21, 13, "Do not use any type assertions.", "2146830713"] - ], - "public/app/plugins/panel/text/textPanelMigrationHandler.ts:3230512821": [ - [10, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 30, 12, "Do not use any type assertions.", "1619708599"], - [10, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 17, 29, "Do not use any type assertions.", "4085879016"] - ], - "public/app/plugins/panel/timeseries/FillBelowToEditor.tsx:4143865253": [ - [5, 75, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/timeseries/LayoutBuilder.ts:3734608408": [ - [4, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 35, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/timeseries/LineStyleEditor.tsx:47523809": [ - [54, 75, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/timeseries/SpanNullsEditor.tsx:282540635": [ - [20, 82, 3, "Unexpected any. Specify a different type.", "193409811"], - [22, 62, 15, "Do not use any type assertions.", "3610795007"], - [23, 41, 15, "Do not use any type assertions.", "3610795007"], - [41, 20, 15, "Do not use any type assertions.", "2911858555"], - [41, 32, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/timeseries/ThresholdsStyleEditor.tsx:256405004": [ - [7, 79, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/timeseries/migrations.test.ts:1953319587": [ - [18, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 18, 16, "Do not use any type assertions.", "388222280"], - [29, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 18, 16, "Do not use any type assertions.", "388222280"], - [47, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 18, 16, "Do not use any type assertions.", "388222280"], - [56, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 18, 16, "Do not use any type assertions.", "388222280"], - [65, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [68, 18, 16, "Do not use any type assertions.", "388222280"], - [74, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [77, 18, 16, "Do not use any type assertions.", "388222280"], - [86, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [99, 20, 16, "Do not use any type assertions.", "388222280"], - [104, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [117, 20, 16, "Do not use any type assertions.", "388222280"], - [122, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [125, 20, 16, "Do not use any type assertions.", "388222280"], - [130, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [142, 20, 16, "Do not use any type assertions.", "388222280"], - [150, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [153, 20, 16, "Do not use any type assertions.", "388222280"], - [158, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [161, 20, 16, "Do not use any type assertions.", "388222280"], - [169, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [191, 20, 16, "Do not use any type assertions.", "388222280"], - [213, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [236, 20, 16, "Do not use any type assertions.", "388222280"], - [258, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [273, 20, 16, "Do not use any type assertions.", "388222280"], - [291, 20, 16, "Do not use any type assertions.", "388222280"], - [335, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [342, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [350, 21, 16, "Do not use any type assertions.", "388222280"], - [351, 21, 16, "Do not use any type assertions.", "388222280"], - [361, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [370, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [379, 18, 3, "Unexpected any. Specify a different type.", "193409811"], - [388, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [397, 21, 16, "Do not use any type assertions.", "388222280"], - [398, 21, 16, "Do not use any type assertions.", "388222280"], - [399, 21, 16, "Do not use any type assertions.", "388222280"], - [400, 21, 16, "Do not use any type assertions.", "388222280"], - [416, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [424, 20, 16, "Do not use any type assertions.", "388222280"], - [432, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [442, 20, 16, "Do not use any type assertions.", "388222280"], - [450, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [455, 20, 16, "Do not use any type assertions.", "388222280"], - [460, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [465, 20, 16, "Do not use any type assertions.", "388222280"] - ], - "public/app/plugins/panel/timeseries/migrations.ts:3727223994": [ - [63, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [269, 30, 22, "Do not use any type assertions.", "1304381333"], - [316, 21, 38, "Do not use any type assertions.", "3634861180"], - [378, 20, 40, "Do not use any type assertions.", "1240468460"], - [510, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [521, 16, 21, "Do not use any type assertions.", "3512717836"], - [548, 19, 9, "Do not use any type assertions.", "3045367786"], - [548, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [549, 39, 9, "Do not use any type assertions.", "4279042889"], - [549, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [561, 19, 10, "Do not use any type assertions.", "229908173"], - [561, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [562, 19, 10, "Do not use any type assertions.", "3620201998"], - [562, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [571, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [584, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [596, 53, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/timeseries/overrides/hideSeriesConfigFactory.ts:789153464": [ - [18, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 21, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 20, 67, "Do not use any type assertions.", "2027647299"] - ], - "public/app/plugins/panel/timeseries/plugins/ContextMenuPlugin.tsx:1970246981": [ - [122, 25, 23, "Do not use any type assertions.", "465915630"], - [262, 24, 71, "Do not use any type assertions.", "1504235577"] - ], - "public/app/plugins/panel/timeseries/plugins/annotations/AnnotationEditor.tsx:4103438520": [ - [85, 37, 78, "Do not use any type assertions.", "1122966567"] - ], - "public/app/plugins/panel/timeseries/suggestions.ts:263886228": [ - [25, 16, 9, "Do not use any type assertions.", "3692209159"], - [25, 22, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/traces/TracesPanel.test.tsx:3657450764": [ - [9, 18, 135, "Do not use any type assertions.", "358256210"], - [9, 18, 121, "Do not use any type assertions.", "965173368"] - ], - "public/app/plugins/panel/xychart/ExplicitEditor.tsx:1911760428": [ - [6, 74, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/xychart/XYDimsEditor.tsx:2549691188": [ - [21, 69, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/xychart/dims.ts:473680168": [ - [28, 11, 48, "Do not use any type assertions.", "1674988454"], - [38, 11, 59, "Do not use any type assertions.", "2625754477"], - [101, 30, 16, "Do not use any type assertions.", "2939667099"], - [101, 43, 3, "Unexpected any. Specify a different type.", "193409811"], - [101, 48, 16, "Do not use any type assertions.", "2939667099"], - [101, 61, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/plugins/panel/xychart/scatter.ts:1533059245": [ - [307, 18, 43, "Do not use any type assertions.", "585008608"], - [307, 18, 28, "Do not use any type assertions.", "1748984188"], - [327, 29, 18, "Do not use any type assertions.", "2059697499"], - [327, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [328, 31, 20, "Do not use any type assertions.", "2512567584"], - [328, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [423, 17, 27, "Do not use any type assertions.", "3603063350"], - [423, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [431, 17, 27, "Do not use any type assertions.", "2854648439"], - [431, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [434, 17, 27, "Do not use any type assertions.", "1954861872"], - [434, 41, 3, "Unexpected any. Specify a different type.", "193409811"], - [562, 23, 44, "Do not use any type assertions.", "3074173021"], - [599, 17, 19, "Do not use any type assertions.", "1105346161"], - [648, 46, 11, "Do not use any type assertions.", "2565170753"], - [651, 58, 11, "Do not use any type assertions.", "3261401808"] - ], - "public/app/plugins/panel/xychart/types.ts:4276980915": [ - [25, 21, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/polyfills/old-mediaquerylist.ts:1408370095": [ - [4, 70, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/store/configureStore.ts:3951464425": [ - [11, 41, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/store/store.ts:1160152146": [ - [13, 11, 79, "Do not use any type assertions.", "2486330760"], - [19, 33, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/types/alerting.ts:3481327440": [ - [12, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 47, 3, "Unexpected any. Specify a different type.", "193409811"], - [107, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [141, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [175, 8, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/types/appEvent.ts:3224869604": [ - [8, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 32, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 96, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 69, 3, "Unexpected any. Specify a different type.", "193409811"], - [19, 98, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 78, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 107, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/types/dashboard.ts:2199289805": [ - [60, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [80, 9, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/types/events.ts:2477887635": [ - [16, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [21, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [25, 33, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [53, 19, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [64, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [65, 8, 3, "Unexpected any. Specify a different type.", "193409811"], - [69, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [70, 15, 3, "Unexpected any. Specify a different type.", "193409811"], - [86, 43, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/types/explore.ts:3965355590": [ - [208, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/types/jquery/jquery.d.ts:143083225": [ - [1, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [1, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [2, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [10, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [13, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/types/plugins.ts:781783078": [ - [38, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 14, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/types/store.ts:912020089": [ - [23, 81, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/types/templates.ts:3574464591": [ - [3, 11, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/app/types/unified-alerting-dto.ts:3935881419": [ - [33, 51, 30, "Do not use any type assertions.", "990588535"], - [42, 11, 30, "Do not use any type assertions.", "2138056949"] - ], - "public/app/types/unified-alerting.ts:1514591085": [ - [25, 39, 42, "Do not use any type assertions.", "3314504643"], - [155, 9, 3, "Unexpected any. Specify a different type.", "193409811"], - [178, 8, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/core/redux/mocks.ts:1870340410": [ - [2, 71, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 92, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/core/redux/reducerTester.ts:4054388132": [ - [4, 24, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 17, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 34, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 53, 3, "Unexpected any. Specify a different type.", "193409811"], - [41, 28, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/core/redux/reduxTester.ts:1549782547": [ - [22, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [56, 50, 62, "Do not use any type assertions.", "914116460"], - [56, 50, 13, "Do not use any type assertions.", "2146830713"], - [60, 56, 87, "Do not use any type assertions.", "2853743899"], - [64, 7, 3, "Unexpected any. Specify a different type.", "193409811"], - [69, 18, 90, "Do not use any type assertions.", "3045800216"], - [69, 18, 62, "Do not use any type assertions.", "1012229817"], - [73, 13, 12, "Do not use any type assertions.", "903706718"], - [73, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [79, 12, 3, "Unexpected any. Specify a different type.", "193409811"], - [95, 12, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/core/thunk/thunkTester.ts:2336747354": [ - [8, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [12, 71, 3, "Unexpected any. Specify a different type.", "193409811"], - [15, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [17, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [18, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [20, 37, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 82, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/global-jquery-shim.ts:3064565802": [ - [2, 15, 13, "Do not use any type assertions.", "538937261"], - [2, 25, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/helpers/convertToStoreState.ts:1614888077": [ - [3, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [8, 9, 65, "Do not use any type assertions.", "3985373075"] - ], - "public/test/helpers/createFetchResponse.ts:154176934": [ - [11, 13, 24, "Do not use any type assertions.", "297012103"], - [11, 13, 13, "Do not use any type assertions.", "2146830713"] - ], - "public/test/helpers/getDashboardModel.ts:1139344098": [ - [2, 40, 3, "Unexpected any. Specify a different type.", "193409811"], - [2, 51, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/helpers/initTemplateSrv.ts:3487039074": [ - [7, 56, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/jest-setup.ts:1854110193": [ - [16, 15, 13, "Do not use any type assertions.", "538937261"], - [16, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [49, 13, 3, "Unexpected any. Specify a different type.", "193409811"], - [54, 34, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/jest-shim.ts:3325467433": [ - [0, 1, 13, "Do not use any type assertions.", "615815978"], - [0, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [0, 51, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 1, 24, "Do not use any type assertions.", "3551577854"], - [4, 22, 3, "Unexpected any. Specify a different type.", "193409811"], - [4, 58, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 10, 3, "Unexpected any. Specify a different type.", "193409811"], - [9, 10, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/lib/common.ts:2386825703": [ - [0, 16, 13, "Do not use any type assertions.", "538937261"], - [0, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/matchers/index.ts:4084403932": [ - [6, 59, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/matchers/toEmitValues.test.ts:2096928533": [ - [9, 27, 37, "Do not use any type assertions.", "337745570"], - [9, 27, 15, "Do not use any type assertions.", "363922340"], - [18, 27, 42, "Do not use any type assertions.", "3418176611"], - [18, 27, 20, "Do not use any type assertions.", "3781735909"], - [27, 27, 34, "Do not use any type assertions.", "2510143784"], - [27, 27, 12, "Do not use any type assertions.", "844110126"], - [54, 27, 59, "Do not use any type assertions.", "2993782234"], - [54, 27, 37, "Do not use any type assertions.", "761345450"], - [109, 27, 221, "Do not use any type assertions.", "1471797766"], - [109, 27, 190, "Do not use any type assertions.", "2691724425"], - [125, 27, 245, "Do not use any type assertions.", "1350352550"], - [125, 27, 214, "Do not use any type assertions.", "371512873"] - ], - "public/test/matchers/toEmitValues.ts:3660664272": [ - [6, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [6, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 31, 3, "Unexpected any. Specify a different type.", "193409811"], - [16, 48, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [26, 52, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 50, 3, "Unexpected any. Specify a different type.", "193409811"], - [59, 66, 3, "Unexpected any. Specify a different type.", "193409811"], - [66, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/matchers/toEmitValuesWith.test.ts:464288295": [ - [9, 27, 37, "Do not use any type assertions.", "337745570"], - [9, 27, 15, "Do not use any type assertions.", "363922340"], - [23, 27, 42, "Do not use any type assertions.", "3418176611"], - [23, 27, 20, "Do not use any type assertions.", "3781735909"], - [37, 27, 34, "Do not use any type assertions.", "2510143784"], - [37, 27, 12, "Do not use any type assertions.", "844110126"], - [79, 27, 59, "Do not use any type assertions.", "2993782234"], - [79, 27, 37, "Do not use any type assertions.", "761345450"] - ], - "public/test/matchers/toEmitValuesWith.ts:1853025909": [ - [5, 35, 3, "Unexpected any. Specify a different type.", "193409811"], - [5, 67, 3, "Unexpected any. Specify a different type.", "193409811"], - [30, 23, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 25, 3, "Unexpected any. Specify a different type.", "193409811"], - [39, 26, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/matchers/utils.ts:1498242290": [ - [5, 86, 3, "Unexpected any. Specify a different type.", "193409811"], - [24, 54, 3, "Unexpected any. Specify a different type.", "193409811"], - [37, 57, 3, "Unexpected any. Specify a different type.", "193409811"], - [50, 43, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/mocks/angular.ts:964690942": [ - [1, 11, 3, "Unexpected any. Specify a different type.", "193409811"], - [2, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [3, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/mocks/backend_srv.ts:1291041292": [ - [1, 10, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/mocks/common.ts:1079183690": [ - [10, 39, 3, "Unexpected any. Specify a different type.", "193409811"], - [11, 14, 3, "Unexpected any. Specify a different type.", "193409811"], - [14, 17, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/mocks/datasource_srv.ts:3405296524": [ - [33, 64, 3, "Unexpected any. Specify a different type.", "193409811"], - [34, 10, 73, "Do not use any type assertions.", "1310990615"], - [39, 25, 26, "Do not use any type assertions.", "1093089864"], - [62, 67, 3, "Unexpected any. Specify a different type.", "193409811"], - [63, 10, 73, "Do not use any type assertions.", "1310990615"], - [69, 25, 26, "Do not use any type assertions.", "1093089864"] - ], - "public/test/mocks/workers.ts:665232371": [ - [5, 20, 3, "Unexpected any. Specify a different type.", "193409811"], - [7, 19, 173, "Do not use any type assertions.", "3229080867"], - [12, 13, 3, "Unexpected any. Specify a different type.", "193409811"] - ], - "public/test/specs/helpers.ts:577060204": [ - [9, 44, 3, "Unexpected any. Specify a different type.", "193409811"], - [23, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [31, 30, 3, "Unexpected any. Specify a different type.", "193409811"], - [32, 42, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [40, 36, 3, "Unexpected any. Specify a different type.", "193409811"], - [46, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [47, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [47, 90, 3, "Unexpected any. Specify a different type.", "193409811"], - [65, 30, 31, "Do not use any type assertions.", "1414893441"], - [78, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [78, 90, 3, "Unexpected any. Specify a different type.", "193409811"], - [102, 26, 3, "Unexpected any. Specify a different type.", "193409811"], - [107, 45, 3, "Unexpected any. Specify a different type.", "193409811"], - [130, 16, 3, "Unexpected any. Specify a different type.", "193409811"], - [151, 38, 3, "Unexpected any. Specify a different type.", "193409811"], - [162, 29, 3, "Unexpected any. Specify a different type.", "193409811"] + "packages/grafana-ui/src/components/DataLinks/DataLinkInput.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"] + ], + "packages/grafana-ui/src/components/DataLinks/SelectionReference.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/DataSourceSettings/CustomHeadersSettings.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/DataSourceSettings/DataSourceHttpSettings.story.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/DataSourceSettings/DataSourceHttpSettings.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/DataSourceSettings/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "packages/grafana-ui/src/components/DateTimePickers/DateTimePicker/DateTimePicker.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/DateTimePickers/TimeOfDayPicker.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/DateTimePickers/TimeRangeInput.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "packages/grafana-ui/src/components/DateTimePickers/TimeZonePicker/TimeZoneOption.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Drawer/Drawer.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Dropdown/ButtonSelect.story.internal.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-ui/src/components/Dropdown/ButtonSelect.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-ui/src/components/ErrorBoundary/ErrorBoundary.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/FileDropzone/FileDropzone.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/FileDropzone/FileDropzone.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/FileDropzone/FileListItem.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-ui/src/components/FileUpload/FileUpload.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/FilterInput/FilterInput.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/FormField/FormField.story.internal.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/FormattedValueDisplay/FormattedValueDisplay.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Forms/FieldArray.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/Forms/FieldValidationMessage.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Forms/Form.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-ui/src/components/Forms/Legacy/Input/Input.story.internal.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Forms/Legacy/Input/Input.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "packages/grafana-ui/src/components/Forms/Legacy/Select/IndicatorsContainer.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Forms/Legacy/Select/Select.story.internal.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/Forms/Legacy/Select/Select.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "packages/grafana-ui/src/components/Forms/Legacy/Select/SelectOption.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Forms/Legacy/Select/SelectOption.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/Forms/Legacy/Switch/Switch.story.internal.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Forms/Legend.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Forms/RadioButtonGroup/RadioButtonGroup.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Forms/RadioButtonList/RadioButtonList.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Gauge/Gauge.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/Graph/Graph.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Graph/Graph.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "packages/grafana-ui/src/components/Graph/GraphContextMenu.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Graph/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/GraphNG/GraphNG.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"] + ], + "packages/grafana-ui/src/components/GraphNG/hooks.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/GraphNG/nullInsertThreshold.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-ui/src/components/GraphNG/nullToUndefThreshold.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "packages/grafana-ui/src/components/GraphNG/utils.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/GraphNG/utils.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/InfoBox/InfoBox.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Input/Input.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"] + ], + "packages/grafana-ui/src/components/JSONFormatter/JSONFormatter.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/JSONFormatter/json_explorer/helpers.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/JSONFormatter/json_explorer/json_explorer.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "packages/grafana-ui/src/components/Layout/Layout.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Link/Link.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/List/List.story.internal.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-ui/src/components/Logs/LogRowContext.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Logs/LogRowContextProvider.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "packages/grafana-ui/src/components/Logs/LogRowContextProvider.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "packages/grafana-ui/src/components/Logs/LogRows.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Logs/logParser.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/MatchersUI/fieldMatchersUI.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Menu/MenuGroup.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Menu/MenuItem.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Menu/hooks.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "packages/grafana-ui/src/components/Modal/Modal.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Modal/ModalsContext.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "packages/grafana-ui/src/components/Monaco/CodeEditor.story.internal.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/OptionsUI/fieldColor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/OptionsUI/number.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-ui/src/components/OptionsUI/string.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-ui/src/components/OptionsUI/strings.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/PanelChrome/PanelContext.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/PanelChrome/index.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/PanelContainer/PanelContainer.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/PluginSignatureBadge/PluginSignatureBadge.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/Portal/Portal.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/QueryField/QueryField.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-ui/src/components/QueryField/QueryField.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-ui/src/components/RefreshPicker/RefreshPicker.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-ui/src/components/SecretFormField/SecretFormField.story.internal.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/SecretInput/SecretInput.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Segment/Segment.story.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "packages/grafana-ui/src/components/Segment/SegmentAsync.story.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "packages/grafana-ui/src/components/Segment/SegmentInput.story.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "packages/grafana-ui/src/components/Segment/SegmentSelect.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-ui/src/components/Select/IndicatorsContainer.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Select/InputControl.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Select/MultiValue.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/Select/Select.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-ui/src/components/Select/SelectBase.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"] + ], + "packages/grafana-ui/src/components/Select/SelectMenu.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "packages/grafana-ui/src/components/Select/SelectOptionGroup.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-ui/src/components/Select/SingleValue.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Select/ValueContainer.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Select/resetSelectStyles.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-ui/src/components/Select/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "packages/grafana-ui/src/components/Select/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/SetInterval/SetInterval.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/SingleStatShared/SingleStatBaseOptions.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"] + ], + "packages/grafana-ui/src/components/SingleStatShared/SingleStatBaseOptions.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Do not use any type assertions.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Do not use any type assertions.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"] + ], + "packages/grafana-ui/src/components/Slider/RangeSlider.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "packages/grafana-ui/src/components/Slider/Slider.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"] + ], + "packages/grafana-ui/src/components/Sparkline/Sparkline.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-ui/src/components/Spinner/Spinner.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/StatsPicker/StatsPicker.story.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "packages/grafana-ui/src/components/Switch/Switch.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Table/BarGaugeCell.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Table/CellActions.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "packages/grafana-ui/src/components/Table/DefaultCell.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Table/Filter.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Table/FilterPopup.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Table/FooterCell.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Table/FooterRow.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/Table/HeaderRow.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-ui/src/components/Table/JSONViewCell.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Table/Table.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/Table/Table.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "packages/grafana-ui/src/components/Table/TableCell.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"] + ], + "packages/grafana-ui/src/components/Table/TableCellInspectModal.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Table/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/Table/utils.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"] + ], + "packages/grafana-ui/src/components/Table/utils.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"] + ], + "packages/grafana-ui/src/components/TableInputCSV/TableInputCSV.story.internal.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/TableInputCSV/TableInputCSV.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/Tags/Tag.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-ui/src/components/TagsInput/TagsInput.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/TextArea/TextArea.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/ThemeDemos/EmotionPerfTest.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/ThemeDemos/ThemeDemo.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/TimeSeries/TimeSeries.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-ui/src/components/TimeSeries/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-ui/src/components/Tooltip/PopoverController.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Tooltip/Tooltip.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/Tooltip/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/Typeahead/TypeaheadItem.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/UnitPicker/UnitPicker.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/VizLegend/VizLegend.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/VizLegend/VizLegendListItem.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/VizLegend/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/components/VizRepeater/VizRepeater.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"] + ], + "packages/grafana-ui/src/components/VizTooltip/SeriesTable.story.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/VizTooltip/VizTooltip.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-ui/src/components/uPlot/Plot.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "packages/grafana-ui/src/components/uPlot/PlotLegend.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-ui/src/components/uPlot/config.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"] + ], + "packages/grafana-ui/src/components/uPlot/config/UPlotAxisBuilder.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "packages/grafana-ui/src/components/uPlot/config/UPlotConfigBuilder.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "packages/grafana-ui/src/components/uPlot/config/UPlotSeriesBuilder.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/components/uPlot/config/gradientFills.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "packages/grafana-ui/src/components/uPlot/plugins/TooltipPlugin.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/uPlot/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/components/uPlot/utils.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"] + ], + "packages/grafana-ui/src/options/builder/axis.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-ui/src/options/builder/hideSeries.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/options/builder/legend.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/options/builder/stacking.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/slate-plugins/braces.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "packages/grafana-ui/src/slate-plugins/braces.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "packages/grafana-ui/src/slate-plugins/clear.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-ui/src/slate-plugins/clear.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/slate-plugins/clipboard.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"] + ], + "packages/grafana-ui/src/slate-plugins/indentation.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/slate-plugins/newline.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/slate-plugins/runner.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/slate-plugins/runner.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-ui/src/slate-plugins/selection_shortcuts.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "packages/grafana-ui/src/slate-plugins/slate-prism/index.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-ui/src/slate-plugins/slate-prism/options.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/slate-plugins/suggestions.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "packages/grafana-ui/src/slate-plugins/suggestions.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-ui/src/themes/ThemeContext.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"] + ], + "packages/grafana-ui/src/themes/stylesFactory.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/types/forms.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/types/jquery.d.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "packages/grafana-ui/src/types/mdx.d.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/types/react-table-config.d.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/utils/colors.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/utils/dataLinks.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/grafana-ui/src/utils/debug.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/utils/dom.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-ui/src/utils/logger.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/grafana-ui/src/utils/reactUtils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/utils/standardEditors.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Do not use any type assertions.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Do not use any type assertions.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Do not use any type assertions.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Do not use any type assertions.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Do not use any type assertions.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Do not use any type assertions.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Do not use any type assertions.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"], + [0, 0, 0, "Do not use any type assertions.", "31"], + [0, 0, 0, "Unexpected any. Specify a different type.", "32"], + [0, 0, 0, "Do not use any type assertions.", "33"], + [0, 0, 0, "Unexpected any. Specify a different type.", "34"], + [0, 0, 0, "Unexpected any. Specify a different type.", "35"], + [0, 0, 0, "Do not use any type assertions.", "36"], + [0, 0, 0, "Unexpected any. Specify a different type.", "37"], + [0, 0, 0, "Do not use any type assertions.", "38"], + [0, 0, 0, "Unexpected any. Specify a different type.", "39"], + [0, 0, 0, "Do not use any type assertions.", "40"], + [0, 0, 0, "Unexpected any. Specify a different type.", "41"], + [0, 0, 0, "Do not use any type assertions.", "42"], + [0, 0, 0, "Unexpected any. Specify a different type.", "43"], + [0, 0, 0, "Do not use any type assertions.", "44"], + [0, 0, 0, "Unexpected any. Specify a different type.", "45"], + [0, 0, 0, "Do not use any type assertions.", "46"], + [0, 0, 0, "Unexpected any. Specify a different type.", "47"], + [0, 0, 0, "Unexpected any. Specify a different type.", "48"], + [0, 0, 0, "Do not use any type assertions.", "49"], + [0, 0, 0, "Unexpected any. Specify a different type.", "50"], + [0, 0, 0, "Unexpected any. Specify a different type.", "51"], + [0, 0, 0, "Do not use any type assertions.", "52"], + [0, 0, 0, "Unexpected any. Specify a different type.", "53"], + [0, 0, 0, "Unexpected any. Specify a different type.", "54"], + [0, 0, 0, "Do not use any type assertions.", "55"], + [0, 0, 0, "Unexpected any. Specify a different type.", "56"], + [0, 0, 0, "Do not use any type assertions.", "57"], + [0, 0, 0, "Unexpected any. Specify a different type.", "58"], + [0, 0, 0, "Do not use any type assertions.", "59"], + [0, 0, 0, "Unexpected any. Specify a different type.", "60"], + [0, 0, 0, "Do not use any type assertions.", "61"], + [0, 0, 0, "Unexpected any. Specify a different type.", "62"], + [0, 0, 0, "Do not use any type assertions.", "63"], + [0, 0, 0, "Unexpected any. Specify a different type.", "64"], + [0, 0, 0, "Do not use any type assertions.", "65"], + [0, 0, 0, "Unexpected any. Specify a different type.", "66"] + ], + "packages/grafana-ui/src/utils/storybook/ThemedDocsContainer.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/utils/storybook/UseState.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/utils/storybook/withTheme.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/utils/table.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/utils/useAsyncDependency.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/grafana-ui/src/utils/useCombinedRefs.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/grafana-ui/src/utils/useDelayedSwitch.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "packages/grafana-ui/src/utils/validate.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/jaeger-ui-components/src/ScrollManager.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/jaeger-ui-components/src/TracePageHeader/SpanGraph/Scrubber.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "packages/jaeger-ui-components/src/TracePageHeader/SpanGraph/render-into-canvas.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/jaeger-ui-components/src/TraceTimelineViewer/ListView/index.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"] + ], + "packages/jaeger-ui-components/src/TraceTimelineViewer/SpanBar.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/jaeger-ui-components/src/TraceTimelineViewer/SpanDetail/KeyValuesTable.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/jaeger-ui-components/src/TraceTimelineViewer/SpanDetail/index.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/jaeger-ui-components/src/TraceTimelineViewer/TimelineHeaderRow/TimelineViewingLayer.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/jaeger-ui-components/src/TraceTimelineViewer/TimelineRow.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/jaeger-ui-components/src/TraceTimelineViewer/VirtualizedTraceView.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "packages/jaeger-ui-components/src/TraceTimelineViewer/utils.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/jaeger-ui-components/src/common/BreakableText.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/jaeger-ui-components/src/common/UiFindInput.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/jaeger-ui-components/src/constants/index.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"] + ], + "packages/jaeger-ui-components/src/constants/tag-keys.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "packages/jaeger-ui-components/src/keyboard-shortcuts.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "packages/jaeger-ui-components/src/model/link-patterns.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Do not use any type assertions.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Do not use any type assertions.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"] + ], + "packages/jaeger-ui-components/src/model/transform-trace-data.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "packages/jaeger-ui-components/src/types/api-error.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/jaeger-ui-components/src/types/links.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/jaeger-ui-components/src/types/trace.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/jaeger-ui-components/src/utils/DraggableManager/DraggableManager.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "packages/jaeger-ui-components/src/utils/DraggableManager/types.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "packages/jaeger-ui-components/src/utils/date.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "plugins-bundled/internal/input-datasource/src/InputDatasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/angular/AngularApp.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/angular/AngularLocationWrapper.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/angular/AngularLocationWrapper.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/angular/GrafanaCtrl.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/angular/array_join.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/angular/autofill_event_fix.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/angular/bridgeReactAngularRouting.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"] + ], + "public/app/angular/bsTooltip.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/angular/bsTypeahead.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "public/app/angular/components/HttpSettingsCtrl.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/angular/components/code_editor/brace.d.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/angular/components/code_editor/code_editor.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/angular/components/form_dropdown/form_dropdown.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Do not use any type assertions.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Do not use any type assertions.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Do not use any type assertions.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Do not use any type assertions.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"] + ], + "public/app/angular/components/info_popover.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/angular/components/jsontree.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/angular/components/plugin_component.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Do not use any type assertions.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"] + ], + "public/app/angular/components/query_part_editor.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"] + ], + "public/app/angular/components/scroll.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/angular/components/spectrum_picker.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/angular/components/sql_part/sql_part.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/angular/components/sql_part/sql_part_editor.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"] + ], + "public/app/angular/components/switch.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/angular/diff-view.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/angular/dropdown_typeahead.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Do not use any type assertions.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"] + ], + "public/app/angular/filters/filters.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/angular/give_focus.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/angular/injectorMonkeyPatch.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/angular/jquery_extended.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/angular/metric_segment.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"] + ], + "public/app/angular/misc.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"] + ], + "public/app/angular/ng_model_on_blur.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"] + ], + "public/app/angular/panel/metrics_panel_ctrl.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"] + ], + "public/app/angular/panel/panel_ctrl.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"] + ], + "public/app/angular/panel/panel_directive.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/angular/panel/panel_editor_tab.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/angular/panel/query_ctrl.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/angular/panel/query_editor_row.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/angular/panel/specs/metrics_panel_ctrl.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/angular/partials.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/angular/promiseToDigest.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/angular/promiseToDigest.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/angular/react2angular.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/angular/rebuild_on_change.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"] + ], + "public/app/angular/services/AngularLoader.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/angular/services/UtilSrv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/angular/services/annotations_srv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/angular/services/dynamic_directive_srv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/angular/services/nav_model_srv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/angular/services/ng_react.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"] + ], + "public/app/angular/services/popover_srv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/angular/services/segment_srv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/angular/services/timer.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/angular/tags.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"] + ], + "public/app/app.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Do not use any type assertions.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Do not use any type assertions.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Do not use any type assertions.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Do not use any type assertions.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"] + ], + "public/app/core/components/ColorScale/ColorScale.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/core/components/DynamicImports/SafeDynamicImport.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/components/Layers/LayerDragDropList.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/core/components/Layers/LayerName.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/components/Layers/LayerName.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/components/Login/LoginCtrl.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/core/components/Login/LoginPage.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/components/Login/LoginServiceButtons.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/core/components/NavBar/NavBarItem.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/components/NavBar/NavBarItem.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/core/components/NavBar/NavBarItemMenuTrigger.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/core/components/NavBar/NavBarMenu.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/core/components/PageHeader/PageHeader.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/components/PageHeader/PageHeader.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/core/components/PanelTypeFilter/PanelTypeFilter.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/components/PermissionList/DisabledPermissionListItem.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/components/PermissionList/PermissionList.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/components/QueryOperationRow/QueryOperationRow.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/components/RolePicker/RolePickerMenu.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/components/Select/FolderPicker.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/components/Select/MetricSelect.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/components/Select/ReadonlyFolderPicker/api.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/core/components/Select/SortPicker.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/components/Select/TeamPicker.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/components/Select/UserPicker.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/components/SharedPreferences/SharedPreferences.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/core/components/TagFilter/TagBadge.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/components/TagFilter/TagFilter.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/core/components/TagFilter/TagOption.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/core/components/TagFilter/TagValue.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/core/components/connectWithCleanUp.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/core/components/editors/DashboardPicker.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/components/editors/DashboardPickerByID.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/core/components/editors/registry.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Do not use any type assertions.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Do not use any type assertions.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"] + ], + "public/app/core/components/modals/AngularModalProxy.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/history/RichHistoryRemoteStorage.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/history/RichHistoryRemoteStorage.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/core/history/richHistoryLocalStorageUtils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/logs_model.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"] + ], + "public/app/core/logs_model.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"] + ], + "public/app/core/mod_defs.d.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/core/navigation/GrafanaRoute.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/core/navigation/RouterDebugger.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/navigation/__mocks__/routeProps.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "public/app/core/navigation/hooks.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/navigation/parseKeyValue.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"] + ], + "public/app/core/navigation/patch/interceptLinkClicks.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/core/navigation/queryString.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/navigation/testRoutes.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/navigation/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/profiler.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/reducers/appNotification.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/reducers/navModel.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/core/reducers/processsAclItems.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/core/reducers/root.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/core/services/FetchQueue.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/core/services/FetchQueueWorker.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/core/services/ModalManager.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/services/PreferencesService.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/services/ResponseQueue.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/services/__mocks__/backend_srv.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/core/services/__mocks__/search_srv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/services/backend_srv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"] + ], + "public/app/core/services/context_srv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/core/services/echo/backends/analytics/ApplicationInsightsBackend.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"] + ], + "public/app/core/services/echo/backends/analytics/RudderstackBackend.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Do not use any type assertions.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Do not use any type assertions.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"] + ], + "public/app/core/services/echo/backends/sentry/transports/CustomEndpointTransport.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/services/echo/backends/sentry/transports/CustomEndpointTransport.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/core/services/echo/backends/sentry/transports/EchoSrvTransport.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/core/services/keybindingSrv.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/core/services/search_srv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/core/services/withFocusedPanelId.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/core/specs/backend_srv.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"] + ], + "public/app/core/specs/flatten.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/core/specs/search_srv.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/core/specs/table_model.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/specs/ticks.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/specs/time_series.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/core/store.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/table_model.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"] + ], + "public/app/core/time_series2.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"] + ], + "public/app/core/utils/ConfigProvider.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/core/utils/acl.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/core/utils/connectWithReduxStore.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"] + ], + "public/app/core/utils/css_loader.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/core/utils/dag.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/utils/deferred.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/core/utils/errors.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/core/utils/errors.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/core/utils/explore.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/core/utils/explore.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"] + ], + "public/app/core/utils/fetch.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"] + ], + "public/app/core/utils/flatten.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/core/utils/kbn.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/core/utils/model_utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/core/utils/object.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/core/utils/query.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/core/utils/richHistory.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/utils/richHistory.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/utils/ticks.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"] + ], + "public/app/core/utils/timePicker.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/core/utils/tracing.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/features/admin/AdminListOrgsPage.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/admin/AdminSettings.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/admin/OrgRolePicker.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/admin/UserListAdminPage.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/admin/UserProfile.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/admin/ldap/LdapPage.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/alerting/AlertRuleItem.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/alerting/AlertRuleList.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/alerting/AlertRuleList.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/alerting/AlertTab.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/features/alerting/AlertTabCtrl.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/alerting/AlertTabCtrl.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Do not use any type assertions.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"], + [0, 0, 0, "Unexpected any. Specify a different type.", "31"], + [0, 0, 0, "Unexpected any. Specify a different type.", "32"], + [0, 0, 0, "Unexpected any. Specify a different type.", "33"] + ], + "public/app/features/alerting/EditNotificationChannelPage.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/alerting/StateHistory.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/alerting/TestRuleResult.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/alerting/components/NotificationChannelOptions.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/alerting/components/OptionElement.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/alerting/getAlertingValidationMessage.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"] + ], + "public/app/features/alerting/getAlertingValidationMessage.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/alerting/state/ThresholdMapper.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/alerting/state/ThresholdMapper.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/alerting/state/actions.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/alerting/state/alertDef.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/alerting/state/query_part.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"] + ], + "public/app/features/alerting/state/reducers.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/alerting/state/selectors.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/alerting/unified/AlertsFolderView.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/alerting/unified/AmRoutes.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/alerting/unified/AmRoutes.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/alerting/unified/PanelAlertTabContent.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/features/alerting/unified/RedirectToRuleViewer.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/alerting/unified/RuleEditor.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/alerting/unified/RuleList.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/alerting/unified/RuleList.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/alerting/unified/RuleViewer.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/alerting/unified/api/alertmanager.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/alerting/unified/api/buildInfo.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/alerting/unified/api/ruler.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/alerting/unified/components/AnnotationDetailsField.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/alerting/unified/components/Expression.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/alerting/unified/components/alert-groups/AlertGroupFilter.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/alerting/unified/components/alert-groups/AlertGroupHeader.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/alerting/unified/components/alert-groups/GroupBy.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/alerting/unified/components/alert-groups/MatcherFilter.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/alerting/unified/components/amroutes/AmRoutesTable.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/alerting/unified/components/receivers/TemplateForm.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/alerting/unified/components/receivers/form/ChannelOptions.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/features/alerting/unified/components/receivers/form/ReceiverForm.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/features/alerting/unified/components/receivers/form/TestContactPointModal.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/alerting/unified/components/receivers/form/fields/OptionField.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "public/app/features/alerting/unified/components/receivers/form/fields/SubformArrayField.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/alerting/unified/components/receivers/form/fields/SubformField.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/alerting/unified/components/rule-editor/AlertRuleForm.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/alerting/unified/components/rule-editor/AnnotationKeyInput.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/alerting/unified/components/rule-editor/AnnotationsField.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/alerting/unified/components/rule-editor/ExpressionEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/alerting/unified/components/rule-editor/PreviewRule.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/alerting/unified/components/rule-editor/RuleInspector.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/alerting/unified/components/rule-editor/SelectWIthAdd.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/alerting/unified/components/rules/RuleDetailsActionButtons.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/alerting/unified/components/rules/RuleDetailsDataSources.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/alerting/unified/components/rules/RulesFilter.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/alerting/unified/components/rules/RulesGroup.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/alerting/unified/components/silences/SilencesEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/alerting/unified/components/silences/SilencesFilter.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/alerting/unified/hooks/useControlledFieldArray.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/alerting/unified/hooks/useFilteredRules.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/alerting/unified/hooks/useGroupedAlerts.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/features/alerting/unified/mocks.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"] + ], + "public/app/features/alerting/unified/state/actions.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/alerting/unified/types/receiver-form.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/alerting/unified/utils/amroutes.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/alerting/unified/utils/datasource.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/alerting/unified/utils/misc.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/alerting/unified/utils/receiver-form.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/alerting/unified/utils/redux.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"] + ], + "public/app/features/alerting/unified/utils/rulerClient.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/alerting/unified/utils/rules.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"] + ], + "public/app/features/annotations/components/AnnotationResultMapper.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/annotations/components/StandardAnnotationQueryEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/annotations/events_processing.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/annotations/executeAnnotationQuery.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/annotations/standardAnnotationSupport.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/features/api-keys/ApiKeysForm.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/api-keys/ApiKeysPage.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/api-keys/ApiKeysTable.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/canvas/element.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/features/canvas/elements/droneFront.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/canvas/elements/droneSide.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/canvas/elements/droneTop.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/canvas/elements/notFound.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/canvas/elements/windTurbine.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/canvas/runtime/ables.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/canvas/runtime/element.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"] + ], + "public/app/features/canvas/runtime/frame.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/canvas/runtime/root.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/canvas/runtime/scene.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/comments/CommentView.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/dashboard/components/AddPanelWidget/AddPanelWidget.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/components/AddPanelWidget/AddPanelWidget.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/features/dashboard/components/DashExportModal/DashboardExporter.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"] + ], + "public/app/features/dashboard/components/DashExportModal/DashboardExporter.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"], + [0, 0, 0, "Do not use any type assertions.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"] + ], + "public/app/features/dashboard/components/DashNav/DashNav.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/components/DashNav/DashNavTimeControls.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/DashboardPrompt/DashboardPrompt.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/dashboard/components/DashboardPrompt/DashboardPrompt.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"] + ], + "public/app/features/dashboard/components/DashboardRow/DashboardRow.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/DashboardRow/DashboardRow.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/DashboardSettings/AnnotationsSettings.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/components/DashboardSettings/AutoRefreshIntervals.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/dashboard/components/DashboardSettings/DashboardSettings.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/components/DashboardSettings/DashboardSettings.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/components/DashboardSettings/GeneralSettings.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/components/DashboardSettings/GeneralSettings.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/dashboard/components/DashboardSettings/VersionsSettings.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/components/DashboardSettings/VersionsSettings.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/Inspector/PanelInspectActions.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/dashboard/components/Inspector/PanelInspector.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/dashboard/components/Inspector/hooks.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/dashboard/components/LinksSettings/LinkSettingsEdit.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/PanelEditor/AngularPanelOptions.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/dashboard/components/PanelEditor/OptionsPaneItemDescriptor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/dashboard/components/PanelEditor/OptionsPaneOptions.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/dashboard/components/PanelEditor/OverrideCategoryTitle.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/components/PanelEditor/PanelEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/features/dashboard/components/PanelEditor/PanelEditorTabs.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/features/dashboard/components/PanelEditor/getFieldOverrideElements.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/dashboard/components/PanelEditor/getVisualizationOptions.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/features/dashboard/components/PanelEditor/state/actions.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"] + ], + "public/app/features/dashboard/components/PanelEditor/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/dashboard/components/PanelEditor/utils.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/PanelEditor/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/dashboard/components/RepeatRowSelect/RepeatRowSelect.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/components/SaveDashboard/SaveDashboardDiff.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/SaveDashboard/SaveDashboardErrorProxy.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/SaveDashboard/forms/SaveDashboardAsForm.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/components/SaveDashboard/forms/SaveDashboardAsForm.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/components/SaveDashboard/forms/SaveDashboardForm.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "public/app/features/dashboard/components/SaveDashboard/forms/SaveDashboardForm.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/SaveDashboard/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/SaveDashboard/useDashboardSave.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/ShareModal/ShareEmbed.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/dashboard/components/ShareModal/ShareExport.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/features/dashboard/components/ShareModal/ShareLink.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/features/dashboard/components/ShareModal/ShareModal.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/components/ShareModal/SharePublicDashboard.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/ShareModal/ShareSnapshot.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/components/ShareModal/utils.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/dashboard/components/SubMenu/Annotations.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/components/SubMenu/DashboardLinks.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/dashboard/components/SubMenu/DashboardLinksDashboard.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/SubMenu/DashboardLinksDashboard.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/dashboard/components/SubMenu/SubMenu.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/components/TransformationsEditor/TransformationEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/TransformationsEditor/TransformationOperationRow.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/TransformationsEditor/TransformationsEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/VersionHistory/HistorySrv.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/dashboard/components/VersionHistory/VersionHistoryComparison.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/VersionHistory/__mocks__/dashboardHistoryMocks.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/dashboard/components/VersionHistory/useDashboardRestore.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/components/VersionHistory/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/features/dashboard/containers/DashboardPage.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/dashboard/containers/DashboardPage.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/dashboard/containers/SoloPanelPage.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"] + ], + "public/app/features/dashboard/dashgrid/DashboardGrid.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/dashboard/dashgrid/DashboardGrid.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/features/dashboard/dashgrid/DashboardPanel.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/dashgrid/LazyLoader.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/dashboard/dashgrid/PanelChrome.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/dashgrid/PanelChrome.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/dashboard/dashgrid/PanelHeader/PanelHeaderMenuItem.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/dashboard/dashgrid/SeriesVisibilityConfigFactory.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/dashboard/services/DashboardLoaderSrv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/features/dashboard/services/DashboardSrv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/services/TimeSrv.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"] + ], + "public/app/features/dashboard/services/TimeSrv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/features/dashboard/state/DashboardMigrator.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"] + ], + "public/app/features/dashboard/state/DashboardMigrator.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Do not use any type assertions.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Do not use any type assertions.", "29"], + [0, 0, 0, "Do not use any type assertions.", "30"], + [0, 0, 0, "Unexpected any. Specify a different type.", "31"], + [0, 0, 0, "Do not use any type assertions.", "32"], + [0, 0, 0, "Unexpected any. Specify a different type.", "33"], + [0, 0, 0, "Do not use any type assertions.", "34"] + ], + "public/app/features/dashboard/state/DashboardModel.refresh.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/state/DashboardModel.repeat.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "public/app/features/dashboard/state/DashboardModel.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/dashboard/state/DashboardModel.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"], + [0, 0, 0, "Do not use any type assertions.", "30"], + [0, 0, 0, "Unexpected any. Specify a different type.", "31"], + [0, 0, 0, "Unexpected any. Specify a different type.", "32"], + [0, 0, 0, "Unexpected any. Specify a different type.", "33"], + [0, 0, 0, "Unexpected any. Specify a different type.", "34"], + [0, 0, 0, "Unexpected any. Specify a different type.", "35"], + [0, 0, 0, "Unexpected any. Specify a different type.", "36"], + [0, 0, 0, "Unexpected any. Specify a different type.", "37"] + ], + "public/app/features/dashboard/state/PanelModel.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/features/dashboard/state/PanelModel.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Do not use any type assertions.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Do not use any type assertions.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Do not use any type assertions.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Do not use any type assertions.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Do not use any type assertions.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Do not use any type assertions.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"] + ], + "public/app/features/dashboard/state/TimeModel.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/dashboard/state/actions.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/state/getPanelOptionsWithDefaults.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dashboard/state/getPanelOptionsWithDefaults.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"] + ], + "public/app/features/dashboard/state/initDashboard.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/features/dashboard/state/initDashboard.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/state/reducers.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dashboard/utils/getPanelMenu.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/dashboard/utils/getPanelMenu.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"] + ], + "public/app/features/dashboard/utils/panelMerge.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/dashboard/utils/panelMerge.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"] + ], + "public/app/features/datasources/DataSourceDashboards.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/datasources/DataSourcesListPage.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/datasources/__mocks__/dataSourcesMocks.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/datasources/settings/ButtonRow.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/datasources/state/actions.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/datasources/state/actions.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/datasources/state/navModel.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/datasources/state/reducers.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/datasources/state/selectors.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/datasources/utils/passwordHandlers.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/datasources/utils/passwordHandlers.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dimensions/color.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dimensions/editors/ColorDimensionEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dimensions/editors/FolderPickerTab.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/dimensions/editors/IconSelector.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dimensions/editors/NumberInput.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dimensions/editors/ResourceDimensionEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/dimensions/editors/ResourcePicker.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dimensions/editors/ScalarDimensionEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dimensions/editors/ScaleDimensionEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dimensions/editors/TextDimensionEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/features/dimensions/editors/ThresholdsEditor/ThresholdsEditor.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/dimensions/editors/ThresholdsEditor/ThresholdsEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/dimensions/editors/ValueMappingsEditor/ValueMappingsEditor.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/dimensions/editors/ValueMappingsEditor/ValueMappingsEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dimensions/editors/ValueMappingsEditor/ValueMappingsEditorModal.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dimensions/resource.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/dimensions/scale.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/dimensions/scale.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dimensions/text.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dimensions/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/dimensions/utils.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/explore/ElapsedTime.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/explore/Explore.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/explore/Explore.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/features/explore/ExploreGraph.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/explore/ExplorePaneContainer.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/features/explore/ExploreQueryInspector.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/explore/ExploreQueryInspector.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/explore/Logs.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/explore/LogsContainer.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/explore/LogsMetaRow.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/explore/NodeGraphContainer.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/explore/QueryRows.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/explore/ResponseErrorContainer.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/explore/RichHistory/RichHistory.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/explore/RichHistory/RichHistoryStarredTab.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/explore/TableContainer.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/explore/TraceView/TraceView.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/explore/TraceView/TraceView.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"] + ], + "public/app/features/explore/TraceView/createSpanLink.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/features/explore/TraceView/createSpanLink.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"] + ], + "public/app/features/explore/Wrapper.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/features/explore/spec/helper/setup.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"] + ], + "public/app/features/explore/spec/interpolation.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/explore/spec/queryHistory.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/explore/state/explorePane.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/features/explore/state/helpers.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/explore/state/main.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/explore/state/main.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/explore/state/query.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"] + ], + "public/app/features/explore/state/query.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/explore/state/time.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/explore/state/utils.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"] + ], + "public/app/features/explore/utils/decorators.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/explore/utils/links.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/features/explore/utils/links.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/expressions/ExpressionDatasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/features/expressions/components/Condition.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/expressions/guards.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/folders/state/actions.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/geo/editor/GazetteerPathEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/geo/format/geohash.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/geo/format/geojson.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/geo/format/geojson.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/geo/format/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/geo/gazetteer/gazetteer.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/geo/gazetteer/gazetteer.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/features/geo/gazetteer/worldmap.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/geo/utils/frameVectorSource.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/inspector/InspectDataOptions.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/features/inspector/InspectDataTab.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/inspector/InspectErrorTab.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/inspector/InspectJSONTab.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/inspector/QueryInspector.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/invites/SignupInvited.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/invites/state/selectors.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/library-panels/components/DeleteLibraryPanelModal/reducer.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/library-panels/components/LibraryPanelsSearch/LibraryPanelsSearch.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/library-panels/components/LibraryPanelsSearch/reducer.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/library-panels/components/LibraryPanelsView/actions.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/library-panels/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/library-panels/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/live/centrifuge/LiveDataStream.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/live/centrifuge/LiveDataStream.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/features/live/centrifuge/channel.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"] + ], + "public/app/features/live/centrifuge/service.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/live/centrifuge/serviceWorkerProxy.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/live/centrifuge/transferHandlers.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/live/index.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/features/live/live.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/live/pages/AddNewRule.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/live/pages/PipelineAdminPage.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/live/pages/PipelineTable.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/live/pages/RuleModal.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/live/pages/RuleTest.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/live/pages/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/live/pages/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/manage-dashboards/DashboardImportPage.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/manage-dashboards/components/ImportDashboardForm.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/manage-dashboards/components/SnapshotListTable.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/manage-dashboards/services/ValidationSrv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/manage-dashboards/state/actions.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/manage-dashboards/state/actions.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"] + ], + "public/app/features/manage-dashboards/state/reducers.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/features/org/state/actions.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/org/state/actions.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/features/org/state/reducers.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/panel/components/PanelPluginError.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/panel/components/PanelRenderer.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/panel/components/VizTypePicker/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/panel/panellinks/linkSuppliers.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/panel/panellinks/link_srv.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "public/app/features/panel/panellinks/specs/link_srv.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/features/panel/state/actions.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/panel/state/getAllSuggestions.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/panel/state/reducers.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/panel/state/utils.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/playlist/PlaylistEditPage.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/playlist/PlaylistNewPage.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/playlist/PlaylistSrv.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/features/playlist/PlaylistSrv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/playlist/StartModal.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/playlist/usePlaylistItems.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/plugins/__mocks__/pluginMocks.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/features/plugins/admin/__mocks__/catalogPlugin.mock.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/plugins/admin/__mocks__/localPlugin.mock.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/plugins/admin/__mocks__/remotePlugin.mock.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/plugins/admin/components/AppConfigWrapper.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/plugins/admin/components/GetStartedWithPlugin/GetStartedWithDataSource.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/plugins/admin/components/PluginDashboards.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/plugins/admin/components/PluginDetailsBody.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/plugins/admin/components/PluginDetailsHeader.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/plugins/admin/components/SearchField.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/plugins/admin/guards.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/plugins/admin/helpers.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/plugins/admin/hooks/useHistory.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/plugins/admin/pages/Browse.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/plugins/admin/pages/Browse.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/features/plugins/admin/pages/PluginDetails.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/plugins/admin/pages/PluginDetails.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/plugins/admin/state/actions.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/features/plugins/admin/state/reducer.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/plugins/admin/state/selectors.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/plugins/admin/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/plugins/built_in_plugins.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/plugins/components/AppRootPage.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/plugins/components/AppRootPage.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/plugins/datasource_srv.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"], + [0, 0, 0, "Do not use any type assertions.", "12"], + [0, 0, 0, "Do not use any type assertions.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Do not use any type assertions.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Do not use any type assertions.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Do not use any type assertions.", "23"], + [0, 0, 0, "Do not use any type assertions.", "24"], + [0, 0, 0, "Do not use any type assertions.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Do not use any type assertions.", "27"] + ], + "public/app/features/plugins/importPanelPlugin.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/plugins/pluginSettings.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/plugins/plugin_loader.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"] + ], + "public/app/features/plugins/tests/datasource_srv.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/plugins/tests/plugin_loader.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/plugins/utils.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/features/profile/state/reducers.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/query/components/QueryEditorRow.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/features/query/components/QueryEditorRowHeader.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/query/components/QueryEditorRowHeader.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/query/components/QueryGroup.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/query/components/QueryGroupOptions.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/query/state/DashboardQueryRunner/AlertStatesWorker.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/query/state/DashboardQueryRunner/AnnotationsQueryRunner.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "public/app/features/query/state/DashboardQueryRunner/AnnotationsQueryRunner.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/query/state/DashboardQueryRunner/AnnotationsWorker.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/query/state/DashboardQueryRunner/DashboardQueryRunner.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/query/state/DashboardQueryRunner/DashboardQueryRunner.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/query/state/DashboardQueryRunner/LegacyAnnotationQueryRunner.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/features/query/state/DashboardQueryRunner/SnapshotWorker.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/query/state/DashboardQueryRunner/SnapshotWorker.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/query/state/DashboardQueryRunner/UnifiedAlertStatesWorker.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/query/state/DashboardQueryRunner/testHelpers.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/query/state/DashboardQueryRunner/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/query/state/PanelQueryRunner.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/features/query/state/PanelQueryRunner.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"] + ], + "public/app/features/query/state/queryAnalytics.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/query/state/runRequest.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/query/state/runRequest.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/query/state/updateQueries.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"] + ], + "public/app/features/runtime/init.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/features/sandbox/TestStuffPage.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/search/components/DashboardSearch.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/search/components/MoveToFolderModal.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/features/search/components/SearchCard.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/features/search/components/SearchItem.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/search/components/SearchResults.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/search/hooks/useDashboardSearch.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/search/hooks/useSearchKeyboardSelection.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/search/hooks/useSearchQuery.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/search/page/components/FolderSection.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/search/page/components/ManageActions.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/search/page/components/ManageActions.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/search/page/components/MoveToFolderModal.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/search/page/components/MoveToFolderModal.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/search/page/components/SearchResultsGrid.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/search/page/components/SearchView.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/search/page/components/columns.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"] + ], + "public/app/features/search/reducers/dashboardSearch.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/search/reducers/manageDashboards.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/features/search/reducers/manageDashboards.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/search/service/bluge.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Do not use any type assertions.", "12"], + [0, 0, 0, "Do not use any type assertions.", "13"] + ], + "public/app/features/search/service/sql.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/features/search/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/search/utils.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"] + ], + "public/app/features/search/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"] + ], + "public/app/features/serviceaccounts/ServiceAccountProfile.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/serviceaccounts/state/reducers.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/features/teams/TeamGroupSync.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/teams/TeamMemberRow.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/teams/TeamMembers.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/teams/TeamPages.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/teams/TeamPages.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/teams/TeamSettings.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/teams/state/reducers.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/features/teams/state/selectors.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/templating/formatRegistry.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/features/templating/template_srv.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/features/templating/template_srv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Do not use any type assertions.", "18"] + ], + "public/app/features/transformers/FilterByValueTransformer/ValueMatchers/BasicMatcherEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/transformers/FilterByValueTransformer/ValueMatchers/NoopMatcherEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/transformers/FilterByValueTransformer/ValueMatchers/RangeMatcherEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/transformers/FilterByValueTransformer/ValueMatchers/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/transformers/FilterByValueTransformer/ValueMatchers/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/transformers/FilterByValueTransformer/ValueMatchers/valueMatchersUI.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/transformers/calculateHeatmap/editor/AxisEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/transformers/calculateHeatmap/editor/helper.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/transformers/calculateHeatmap/heatmap.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/transformers/configFromQuery/ConfigFromQueryTransformerEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/transformers/editors/CalculateFieldTransformerEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/transformers/editors/ConvertFieldTypeTransformerEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/transformers/editors/GroupByTransformerEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/transformers/editors/OrganizeFieldsTransformerEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/transformers/editors/ReduceTransformerEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/transformers/editors/SortByTransformerEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/transformers/extractFields/ExtractFieldsTransformerEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/transformers/extractFields/extractFields.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/transformers/extractFields/extractFields.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/transformers/extractFields/fieldExtractors.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/transformers/fieldToConfigMapping/FieldToConfigMappingEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/transformers/fieldToConfigMapping/fieldToConfigMapping.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/features/transformers/lookupGazetteer/FieldLookupTransformerEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/transformers/lookupGazetteer/fieldLookup.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/transformers/prepareTimeSeries/prepareTimeSeries.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/transformers/prepareTimeSeries/prepareTimeSeries.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/transformers/spatial/SpatialTransformerEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/transformers/spatial/optionsHelper.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"] + ], + "public/app/features/transformers/spatial/utils.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/transformers/standardTransformers.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/transformers/utils.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/users/UsersActionBar.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/users/__mocks__/userMocks.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/features/users/state/reducers.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/variables/adapters.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/variables/adhoc/actions.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/variables/adhoc/picker/AdHocFilter.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/variables/adhoc/picker/AdHocFilter.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/variables/adhoc/picker/AdHocFilterBuilder.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/variables/adhoc/picker/AdHocFilterKey.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/variables/adhoc/picker/AdHocFilterRenderer.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/variables/adhoc/urlParser.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/constant/reducer.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/variables/custom/reducer.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/variables/datasource/actions.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/variables/datasource/reducer.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/variables/editor/VariableEditorContainer.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/variables/editor/VariableEditorEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/editor/VariableSelectField.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/variables/editor/VariableTextAreaField.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/editor/getVariableQueryEditor.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"] + ], + "public/app/features/variables/editor/getVariableQueryEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/editor/reducer.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/variables/editor/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/variables/getAllVariableValuesForUrl.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/variables/getAllVariableValuesForUrl.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/guard.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"], + [0, 0, 0, "Unexpected any. Specify a different type.", "31"], + [0, 0, 0, "Unexpected any. Specify a different type.", "32"] + ], + "public/app/features/variables/guard.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"] + ], + "public/app/features/variables/inspect/NetworkGraph.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/features/variables/inspect/utils.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/variables/inspect/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Do not use any type assertions.", "13"], + [0, 0, 0, "Do not use any type assertions.", "14"] + ], + "public/app/features/variables/interval/reducer.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/variables/pickers/OptionsPicker/OptionPicker.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/variables/pickers/OptionsPicker/actions.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/variables/pickers/OptionsPicker/actions.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/pickers/OptionsPicker/reducer.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"] + ], + "public/app/features/variables/pickers/shared/VariableInput.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/variables/query/QueryVariableEditor.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/variables/query/QueryVariableEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/query/VariableQueryRunner.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/variables/query/VariableQueryRunner.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/variables/query/actions.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/features/variables/query/actions.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/features/variables/query/operators.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/query/operators.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/query/queryRunners.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"] + ], + "public/app/features/variables/query/queryRunners.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/query/reducer.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/variables/query/variableQueryObserver.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/query/variableQueryObserver.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/shared/formatVariable.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/variables/shared/testing/datasourceVariableBuilder.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/variables/shared/testing/helpers.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/features/variables/shared/testing/optionsVariableBuilder.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/features/variables/shared/testing/variableBuilder.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/variables/state/actions.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/features/variables/state/actions.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"] + ], + "public/app/features/variables/state/initVariableTransaction.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/state/keyedVariablesReducer.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/state/processVariable.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/state/reducers.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/state/selectors.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/features/variables/state/sharedReducer.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/state/sharedReducer.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/variables/state/transactionReducer.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/features/variables/state/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/features/variables/state/upgradeLegacyQueries.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/features/variables/state/variablesReducer.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/variables/system/adapter.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/features/variables/textbox/reducer.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/features/variables/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/features/variables/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"] + ], + "public/app/index.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/alertmanager/ConfigEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/alertmanager/DataSource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/alertmanager/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/plugins/datasource/cloud-monitoring/CloudMonitoringMetricFindQuery.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/cloud-monitoring/__mocks__/cloudMonitoringDatasource.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/cloud-monitoring/annotationSupport.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/datasource/cloud-monitoring/components/Aggregation.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/plugins/datasource/cloud-monitoring/components/Aggregation.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/datasource/cloud-monitoring/components/AliasBy.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/cloud-monitoring/components/MQLQueryEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/cloud-monitoring/components/MetricQueryEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/cloud-monitoring/components/Metrics.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/cloud-monitoring/components/QueryEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/cloud-monitoring/components/VariableQueryEditor.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/cloud-monitoring/components/VariableQueryEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/plugins/datasource/cloud-monitoring/components/VisualMetricQueryEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/cloud-monitoring/datasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"] + ], + "public/app/plugins/datasource/cloud-monitoring/functions.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/cloud-monitoring/functions.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/cloud-monitoring/specs/datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/cloud-monitoring/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/__mocks__/CloudWatchDataSource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"] + ], + "public/app/plugins/datasource/cloudwatch/__mocks__/cloudwatch-sql-test-data/multiLineFullQuery.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/__mocks__/cloudwatch-sql-test-data/multiLineIncompleteQueryWithoutNamespace.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/__mocks__/cloudwatch-sql-test-data/singleLineEmptyQuery.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/__mocks__/cloudwatch-sql-test-data/singleLineFullQuery.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/__mocks__/cloudwatch-sql-test-data/singleLineTwoQueries.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/__mocks__/dynamic-label-test-data/afterLabelValue.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/__mocks__/dynamic-label-test-data/insideLabelValue.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/__mocks__/metric-math-test-data/afterFunctionQuery.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/__mocks__/metric-math-test-data/secondArgAfterSearchQuery.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/__mocks__/metric-math-test-data/secondArgQuery.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/__mocks__/metric-math-test-data/singleLineEmptyQuery.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/__mocks__/metric-math-test-data/thirdArgAfterSearchQuery.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/__mocks__/metric-math-test-data/withinStringQuery.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/__mocks__/monarch/Monaco.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/cloudwatch/components/ConfigEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/components/LogsQueryEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/components/LogsQueryField.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/plugins/datasource/cloudwatch/components/LogsQueryField.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"] + ], + "public/app/plugins/datasource/cloudwatch/components/MetricsQueryEditor/Alias.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/cloudwatch/components/MetricsQueryEditor/MetricsQueryEditor.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/cloudwatch/components/MetricsQueryEditor/usePreparedMetricsQuery.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/components/PanelQueryEditor.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/cloudwatch/components/QueryHeader.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/datasource/cloudwatch/datasource.d.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"] + ], + "public/app/plugins/datasource/cloudwatch/datasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Do not use any type assertions.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Do not use any type assertions.", "24"], + [0, 0, 0, "Do not use any type assertions.", "25"], + [0, 0, 0, "Do not use any type assertions.", "26"], + [0, 0, 0, "Do not use any type assertions.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"] + ], + "public/app/plugins/datasource/cloudwatch/guards.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/language_provider.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/plugins/datasource/cloudwatch/language_provider.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/plugins/datasource/cloudwatch/memoizedDebounce.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/cloudwatch/metric-math/completion/CompletionItemProvider.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/cloudwatch/specs/datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"] + ], + "public/app/plugins/datasource/cloudwatch/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/plugins/datasource/cloudwatch/utils/datalinks.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/cloudwatch/utils/datalinks.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/datasource/cloudwatch/utils/logsRetry.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/dashboard/DashboardQueryEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/datasource/dashboard/runSharedRequest.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/datasource/elasticsearch/components/AddRemove.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/elasticsearch/components/AddRemove.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/elasticsearch/components/QueryEditor/BucketAggregationsEditor/BucketAggregationEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/elasticsearch/components/QueryEditor/BucketAggregationsEditor/SettingsEditor/DateHistogramSettingsEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/elasticsearch/components/QueryEditor/BucketAggregationsEditor/SettingsEditor/TermsSettingsEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/datasource/elasticsearch/components/QueryEditor/BucketAggregationsEditor/aggregations.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/elasticsearch/components/QueryEditor/BucketAggregationsEditor/state/actions.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/elasticsearch/components/QueryEditor/BucketAggregationsEditor/state/reducer.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/elasticsearch/components/QueryEditor/ElasticsearchQueryContext.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/elasticsearch/components/QueryEditor/MetricAggregationsEditor/MetricEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/elasticsearch/components/QueryEditor/MetricAggregationsEditor/SettingsEditor/SettingField.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/datasource/elasticsearch/components/QueryEditor/MetricAggregationsEditor/aggregations.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/elasticsearch/components/QueryEditor/MetricAggregationsEditor/state/actions.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/elasticsearch/components/QueryEditor/MetricAggregationsEditor/state/reducer.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/elasticsearch/configuration/DataLinks.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/plugins/datasource/elasticsearch/datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"] + ], + "public/app/plugins/datasource/elasticsearch/datasource.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Do not use any type assertions.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"] + ], + "public/app/plugins/datasource/elasticsearch/elastic_response.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Do not use any type assertions.", "12"], + [0, 0, 0, "Do not use any type assertions.", "13"], + [0, 0, 0, "Do not use any type assertions.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Do not use any type assertions.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"], + [0, 0, 0, "Unexpected any. Specify a different type.", "31"], + [0, 0, 0, "Unexpected any. Specify a different type.", "32"], + [0, 0, 0, "Unexpected any. Specify a different type.", "33"], + [0, 0, 0, "Unexpected any. Specify a different type.", "34"], + [0, 0, 0, "Unexpected any. Specify a different type.", "35"], + [0, 0, 0, "Unexpected any. Specify a different type.", "36"], + [0, 0, 0, "Unexpected any. Specify a different type.", "37"], + [0, 0, 0, "Unexpected any. Specify a different type.", "38"], + [0, 0, 0, "Unexpected any. Specify a different type.", "39"], + [0, 0, 0, "Unexpected any. Specify a different type.", "40"], + [0, 0, 0, "Unexpected any. Specify a different type.", "41"], + [0, 0, 0, "Unexpected any. Specify a different type.", "42"], + [0, 0, 0, "Unexpected any. Specify a different type.", "43"], + [0, 0, 0, "Unexpected any. Specify a different type.", "44"], + [0, 0, 0, "Unexpected any. Specify a different type.", "45"], + [0, 0, 0, "Unexpected any. Specify a different type.", "46"], + [0, 0, 0, "Unexpected any. Specify a different type.", "47"] + ], + "public/app/plugins/datasource/elasticsearch/hooks/useNextId.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/elasticsearch/hooks/useStatelessReducer.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/elasticsearch/language_provider.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/elasticsearch/language_provider.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/elasticsearch/query_builder.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Do not use any type assertions.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"] + ], + "public/app/plugins/datasource/elasticsearch/specs/elastic_response.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"] + ], + "public/app/plugins/datasource/elasticsearch/specs/query_builder.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "public/app/plugins/datasource/elasticsearch/test-helpers/render.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/__mocks__/datasource.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/__mocks__/instanceSettings.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/__mocks__/panelData.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/__mocks__/query_ctrl.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_log_analytics/__mocks__/schema.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_log_analytics/azure_log_analytics_datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_log_analytics/azure_log_analytics_datasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_log_analytics/response_parser.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_monitor/azure_monitor_datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_monitor/azure_monitor_datasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_monitor/response_parser.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_resource_graph/azure_resource_graph_datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_resource_graph/azure_resource_graph_datasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/components/LogsQueryEditor/QueryField.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/components/MetricsQueryEditor/dataHooks.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/components/MonitorConfig.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/components/QueryEditor/QueryEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/components/ResourcePicker/ResourcePicker.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/datasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/log_analytics/querystring_builder.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/time_grain_converter.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/types/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/utils/common.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/utils/messageFromError.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/grafana-azure-monitor-datasource/utils/useAsyncState.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/grafana/components/AnnotationQueryEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/grafana/components/QueryEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/plugins/datasource/grafana/components/SearchEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/datasource/grafana/datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/grafana/datasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"] + ], + "public/app/plugins/datasource/graphite/components/FunctionEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/graphite/components/MetricTankMetaInspector.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/graphite/components/helpers.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/graphite/datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"] + ], + "public/app/plugins/datasource/graphite/datasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"], + [0, 0, 0, "Do not use any type assertions.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"], + [0, 0, 0, "Unexpected any. Specify a different type.", "31"], + [0, 0, 0, "Unexpected any. Specify a different type.", "32"], + [0, 0, 0, "Unexpected any. Specify a different type.", "33"], + [0, 0, 0, "Unexpected any. Specify a different type.", "34"], + [0, 0, 0, "Unexpected any. Specify a different type.", "35"], + [0, 0, 0, "Unexpected any. Specify a different type.", "36"], + [0, 0, 0, "Unexpected any. Specify a different type.", "37"], + [0, 0, 0, "Unexpected any. Specify a different type.", "38"], + [0, 0, 0, "Unexpected any. Specify a different type.", "39"], + [0, 0, 0, "Unexpected any. Specify a different type.", "40"], + [0, 0, 0, "Unexpected any. Specify a different type.", "41"], + [0, 0, 0, "Unexpected any. Specify a different type.", "42"], + [0, 0, 0, "Unexpected any. Specify a different type.", "43"], + [0, 0, 0, "Unexpected any. Specify a different type.", "44"], + [0, 0, 0, "Unexpected any. Specify a different type.", "45"], + [0, 0, 0, "Unexpected any. Specify a different type.", "46"], + [0, 0, 0, "Unexpected any. Specify a different type.", "47"], + [0, 0, 0, "Unexpected any. Specify a different type.", "48"], + [0, 0, 0, "Unexpected any. Specify a different type.", "49"], + [0, 0, 0, "Unexpected any. Specify a different type.", "50"], + [0, 0, 0, "Do not use any type assertions.", "51"], + [0, 0, 0, "Do not use any type assertions.", "52"], + [0, 0, 0, "Unexpected any. Specify a different type.", "53"], + [0, 0, 0, "Unexpected any. Specify a different type.", "54"], + [0, 0, 0, "Unexpected any. Specify a different type.", "55"], + [0, 0, 0, "Unexpected any. Specify a different type.", "56"], + [0, 0, 0, "Unexpected any. Specify a different type.", "57"], + [0, 0, 0, "Unexpected any. Specify a different type.", "58"], + [0, 0, 0, "Unexpected any. Specify a different type.", "59"], + [0, 0, 0, "Unexpected any. Specify a different type.", "60"], + [0, 0, 0, "Unexpected any. Specify a different type.", "61"], + [0, 0, 0, "Unexpected any. Specify a different type.", "62"], + [0, 0, 0, "Unexpected any. Specify a different type.", "63"], + [0, 0, 0, "Unexpected any. Specify a different type.", "64"] + ], + "public/app/plugins/datasource/graphite/datasource_integration.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/graphite/gfunc.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"] + ], + "public/app/plugins/datasource/graphite/graphite_query.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Do not use any type assertions.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"] + ], + "public/app/plugins/datasource/graphite/lexer.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/plugins/datasource/graphite/parser.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/plugins/datasource/graphite/specs/graphite_query.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/graphite/specs/store.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/graphite/state/context.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/datasource/graphite/state/helpers.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/graphite/state/store.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/plugins/datasource/graphite/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/graphite/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/influxdb/components/ConfigEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"] + ], + "public/app/plugins/datasource/influxdb/components/InfluxCheatSheet.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/influxdb/datasource.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Do not use any type assertions.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Do not use any type assertions.", "23"], + [0, 0, 0, "Do not use any type assertions.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Do not use any type assertions.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"], + [0, 0, 0, "Unexpected any. Specify a different type.", "31"], + [0, 0, 0, "Unexpected any. Specify a different type.", "32"], + [0, 0, 0, "Unexpected any. Specify a different type.", "33"], + [0, 0, 0, "Unexpected any. Specify a different type.", "34"], + [0, 0, 0, "Unexpected any. Specify a different type.", "35"], + [0, 0, 0, "Unexpected any. Specify a different type.", "36"], + [0, 0, 0, "Unexpected any. Specify a different type.", "37"], + [0, 0, 0, "Unexpected any. Specify a different type.", "38"], + [0, 0, 0, "Unexpected any. Specify a different type.", "39"], + [0, 0, 0, "Unexpected any. Specify a different type.", "40"] + ], + "public/app/plugins/datasource/influxdb/influx_query_model.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"] + ], + "public/app/plugins/datasource/influxdb/influx_series.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"] + ], + "public/app/plugins/datasource/influxdb/query_builder.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"] + ], + "public/app/plugins/datasource/influxdb/query_part.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"] + ], + "public/app/plugins/datasource/influxdb/response_parser.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"] + ], + "public/app/plugins/datasource/influxdb/specs/datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"] + ], + "public/app/plugins/datasource/influxdb/specs/influx_query_model.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/influxdb/specs/response_parser.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/jaeger/components/SearchForm.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/plugins/datasource/jaeger/datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/plugins/datasource/jaeger/datasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "public/app/plugins/datasource/jaeger/testResponse.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/plugins/datasource/jaeger/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/jaeger/util.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/loki/LokiAnnotationsQueryCtrl.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/loki/components/LokiExploreQueryEditor.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/loki/components/LokiLabelBrowser.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/datasource/loki/components/LokiOptionFields.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/loki/components/LokiQueryEditor.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/loki/components/LokiQueryField.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/loki/components/LokiQueryField.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/datasource/loki/configuration/ConfigEditor.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/loki/configuration/ConfigEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/loki/configuration/DebugSection.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"] + ], + "public/app/plugins/datasource/loki/configuration/DerivedField.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/loki/configuration/DerivedFields.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "public/app/plugins/datasource/loki/datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"] + ], + "public/app/plugins/datasource/loki/datasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"] + ], + "public/app/plugins/datasource/loki/getDerivedFields.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/datasource/loki/language_provider.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/loki/language_provider.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/loki/live_streams.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/plugins/datasource/loki/live_streams.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/loki/mocks.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/loki/querybuilder/binaryScalarOperations.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/loki/querybuilder/components/LokiQueryBuilder.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/loki/querybuilder/components/LokiQueryBuilder.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/datasource/loki/querybuilder/components/LokiQueryBuilderContainer.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/loki/querybuilder/components/LokiQueryBuilderContainer.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/loki/querybuilder/components/LokiQueryEditorSelector.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/loki/querybuilder/parsing.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/datasource/loki/querybuilder/state.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/loki/querybuilder/state.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/loki/result_transformer.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"] + ], + "public/app/plugins/datasource/loki/streaming.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/mixed/MixedDataSource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/plugins/datasource/mixed/MixedDataSource.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/datasource/mssql/config_ctrl.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/mssql/datasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"] + ], + "public/app/plugins/datasource/mssql/module.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/mssql/query_ctrl.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/mssql/response_parser.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/datasource/mssql/specs/datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/plugins/datasource/mssql/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/plugins/datasource/mysql/datasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"] + ], + "public/app/plugins/datasource/mysql/meta_query.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/mysql/module.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/mysql/mysql_query_model.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"] + ], + "public/app/plugins/datasource/mysql/query_ctrl.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Do not use any type assertions.", "24"], + [0, 0, 0, "Do not use any type assertions.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"], + [0, 0, 0, "Unexpected any. Specify a different type.", "31"], + [0, 0, 0, "Unexpected any. Specify a different type.", "32"], + [0, 0, 0, "Unexpected any. Specify a different type.", "33"], + [0, 0, 0, "Unexpected any. Specify a different type.", "34"], + [0, 0, 0, "Unexpected any. Specify a different type.", "35"], + [0, 0, 0, "Unexpected any. Specify a different type.", "36"], + [0, 0, 0, "Unexpected any. Specify a different type.", "37"], + [0, 0, 0, "Unexpected any. Specify a different type.", "38"], + [0, 0, 0, "Unexpected any. Specify a different type.", "39"], + [0, 0, 0, "Unexpected any. Specify a different type.", "40"], + [0, 0, 0, "Unexpected any. Specify a different type.", "41"], + [0, 0, 0, "Unexpected any. Specify a different type.", "42"], + [0, 0, 0, "Unexpected any. Specify a different type.", "43"], + [0, 0, 0, "Unexpected any. Specify a different type.", "44"], + [0, 0, 0, "Unexpected any. Specify a different type.", "45"], + [0, 0, 0, "Unexpected any. Specify a different type.", "46"], + [0, 0, 0, "Unexpected any. Specify a different type.", "47"], + [0, 0, 0, "Unexpected any. Specify a different type.", "48"], + [0, 0, 0, "Unexpected any. Specify a different type.", "49"], + [0, 0, 0, "Unexpected any. Specify a different type.", "50"], + [0, 0, 0, "Unexpected any. Specify a different type.", "51"], + [0, 0, 0, "Unexpected any. Specify a different type.", "52"], + [0, 0, 0, "Unexpected any. Specify a different type.", "53"], + [0, 0, 0, "Unexpected any. Specify a different type.", "54"] + ], + "public/app/plugins/datasource/mysql/response_parser.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/datasource/mysql/specs/datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/mysql/sql_part.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/mysql/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/plugins/datasource/opentsdb/datasource.d.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/opentsdb/datasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"], + [0, 0, 0, "Unexpected any. Specify a different type.", "31"], + [0, 0, 0, "Unexpected any. Specify a different type.", "32"], + [0, 0, 0, "Unexpected any. Specify a different type.", "33"], + [0, 0, 0, "Unexpected any. Specify a different type.", "34"], + [0, 0, 0, "Unexpected any. Specify a different type.", "35"], + [0, 0, 0, "Unexpected any. Specify a different type.", "36"], + [0, 0, 0, "Unexpected any. Specify a different type.", "37"], + [0, 0, 0, "Unexpected any. Specify a different type.", "38"], + [0, 0, 0, "Unexpected any. Specify a different type.", "39"], + [0, 0, 0, "Unexpected any. Specify a different type.", "40"], + [0, 0, 0, "Unexpected any. Specify a different type.", "41"], + [0, 0, 0, "Unexpected any. Specify a different type.", "42"], + [0, 0, 0, "Unexpected any. Specify a different type.", "43"], + [0, 0, 0, "Unexpected any. Specify a different type.", "44"], + [0, 0, 0, "Unexpected any. Specify a different type.", "45"], + [0, 0, 0, "Unexpected any. Specify a different type.", "46"], + [0, 0, 0, "Unexpected any. Specify a different type.", "47"], + [0, 0, 0, "Unexpected any. Specify a different type.", "48"], + [0, 0, 0, "Unexpected any. Specify a different type.", "49"], + [0, 0, 0, "Unexpected any. Specify a different type.", "50"], + [0, 0, 0, "Unexpected any. Specify a different type.", "51"], + [0, 0, 0, "Unexpected any. Specify a different type.", "52"], + [0, 0, 0, "Unexpected any. Specify a different type.", "53"], + [0, 0, 0, "Unexpected any. Specify a different type.", "54"], + [0, 0, 0, "Unexpected any. Specify a different type.", "55"], + [0, 0, 0, "Do not use any type assertions.", "56"], + [0, 0, 0, "Unexpected any. Specify a different type.", "57"], + [0, 0, 0, "Unexpected any. Specify a different type.", "58"], + [0, 0, 0, "Unexpected any. Specify a different type.", "59"], + [0, 0, 0, "Unexpected any. Specify a different type.", "60"] + ], + "public/app/plugins/datasource/opentsdb/query_ctrl.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"] + ], + "public/app/plugins/datasource/opentsdb/specs/datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/opentsdb/specs/query_ctrl.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/opentsdb/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/postgres/config_ctrl.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/plugins/datasource/postgres/datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/postgres/datasource.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"] + ], + "public/app/plugins/datasource/postgres/module.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/postgres/postgres_query_model.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"] + ], + "public/app/plugins/datasource/postgres/query_ctrl.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Do not use any type assertions.", "28"], + [0, 0, 0, "Do not use any type assertions.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"], + [0, 0, 0, "Unexpected any. Specify a different type.", "31"], + [0, 0, 0, "Unexpected any. Specify a different type.", "32"], + [0, 0, 0, "Unexpected any. Specify a different type.", "33"], + [0, 0, 0, "Unexpected any. Specify a different type.", "34"], + [0, 0, 0, "Unexpected any. Specify a different type.", "35"], + [0, 0, 0, "Unexpected any. Specify a different type.", "36"], + [0, 0, 0, "Unexpected any. Specify a different type.", "37"], + [0, 0, 0, "Unexpected any. Specify a different type.", "38"], + [0, 0, 0, "Unexpected any. Specify a different type.", "39"], + [0, 0, 0, "Unexpected any. Specify a different type.", "40"], + [0, 0, 0, "Unexpected any. Specify a different type.", "41"], + [0, 0, 0, "Unexpected any. Specify a different type.", "42"], + [0, 0, 0, "Unexpected any. Specify a different type.", "43"], + [0, 0, 0, "Unexpected any. Specify a different type.", "44"], + [0, 0, 0, "Unexpected any. Specify a different type.", "45"], + [0, 0, 0, "Unexpected any. Specify a different type.", "46"], + [0, 0, 0, "Unexpected any. Specify a different type.", "47"], + [0, 0, 0, "Unexpected any. Specify a different type.", "48"], + [0, 0, 0, "Unexpected any. Specify a different type.", "49"], + [0, 0, 0, "Unexpected any. Specify a different type.", "50"], + [0, 0, 0, "Unexpected any. Specify a different type.", "51"], + [0, 0, 0, "Unexpected any. Specify a different type.", "52"], + [0, 0, 0, "Unexpected any. Specify a different type.", "53"], + [0, 0, 0, "Unexpected any. Specify a different type.", "54"], + [0, 0, 0, "Unexpected any. Specify a different type.", "55"], + [0, 0, 0, "Unexpected any. Specify a different type.", "56"], + [0, 0, 0, "Unexpected any. Specify a different type.", "57"], + [0, 0, 0, "Unexpected any. Specify a different type.", "58"], + [0, 0, 0, "Unexpected any. Specify a different type.", "59"] + ], + "public/app/plugins/datasource/postgres/response_parser.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/datasource/postgres/specs/datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/postgres/specs/postgres_query.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/postgres/sql_part.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/postgres/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/plugins/datasource/prometheus/components/PromExploreExtraField.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/prometheus/components/PromExploreQueryEditor.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/prometheus/components/PromLink.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/prometheus/components/PromLink.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/prometheus/components/PromQueryEditor.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/prometheus/components/PromQueryEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/datasource/prometheus/components/PromQueryEditorByApp.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/prometheus/components/PromQueryField.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/prometheus/components/PromQueryField.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"] + ], + "public/app/plugins/datasource/prometheus/components/PrometheusMetricsBrowser.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/datasource/prometheus/configuration/AzureCredentials.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/prometheus/configuration/AzureCredentialsConfig.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"] + ], + "public/app/plugins/datasource/prometheus/configuration/ConfigEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/prometheus/configuration/PromSettings.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/prometheus/datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"], + [0, 0, 0, "Unexpected any. Specify a different type.", "31"], + [0, 0, 0, "Unexpected any. Specify a different type.", "32"], + [0, 0, 0, "Unexpected any. Specify a different type.", "33"], + [0, 0, 0, "Unexpected any. Specify a different type.", "34"], + [0, 0, 0, "Unexpected any. Specify a different type.", "35"], + [0, 0, 0, "Unexpected any. Specify a different type.", "36"], + [0, 0, 0, "Unexpected any. Specify a different type.", "37"], + [0, 0, 0, "Unexpected any. Specify a different type.", "38"], + [0, 0, 0, "Unexpected any. Specify a different type.", "39"], + [0, 0, 0, "Unexpected any. Specify a different type.", "40"], + [0, 0, 0, "Unexpected any. Specify a different type.", "41"], + [0, 0, 0, "Unexpected any. Specify a different type.", "42"], + [0, 0, 0, "Unexpected any. Specify a different type.", "43"], + [0, 0, 0, "Unexpected any. Specify a different type.", "44"], + [0, 0, 0, "Unexpected any. Specify a different type.", "45"], + [0, 0, 0, "Unexpected any. Specify a different type.", "46"], + [0, 0, 0, "Unexpected any. Specify a different type.", "47"], + [0, 0, 0, "Unexpected any. Specify a different type.", "48"], + [0, 0, 0, "Unexpected any. Specify a different type.", "49"], + [0, 0, 0, "Unexpected any. Specify a different type.", "50"], + [0, 0, 0, "Unexpected any. Specify a different type.", "51"], + [0, 0, 0, "Unexpected any. Specify a different type.", "52"], + [0, 0, 0, "Unexpected any. Specify a different type.", "53"], + [0, 0, 0, "Unexpected any. Specify a different type.", "54"], + [0, 0, 0, "Unexpected any. Specify a different type.", "55"], + [0, 0, 0, "Unexpected any. Specify a different type.", "56"], + [0, 0, 0, "Unexpected any. Specify a different type.", "57"], + [0, 0, 0, "Unexpected any. Specify a different type.", "58"], + [0, 0, 0, "Unexpected any. Specify a different type.", "59"], + [0, 0, 0, "Unexpected any. Specify a different type.", "60"], + [0, 0, 0, "Unexpected any. Specify a different type.", "61"], + [0, 0, 0, "Unexpected any. Specify a different type.", "62"], + [0, 0, 0, "Unexpected any. Specify a different type.", "63"], + [0, 0, 0, "Unexpected any. Specify a different type.", "64"], + [0, 0, 0, "Unexpected any. Specify a different type.", "65"], + [0, 0, 0, "Unexpected any. Specify a different type.", "66"], + [0, 0, 0, "Unexpected any. Specify a different type.", "67"], + [0, 0, 0, "Unexpected any. Specify a different type.", "68"], + [0, 0, 0, "Unexpected any. Specify a different type.", "69"], + [0, 0, 0, "Unexpected any. Specify a different type.", "70"], + [0, 0, 0, "Unexpected any. Specify a different type.", "71"], + [0, 0, 0, "Unexpected any. Specify a different type.", "72"], + [0, 0, 0, "Unexpected any. Specify a different type.", "73"], + [0, 0, 0, "Unexpected any. Specify a different type.", "74"], + [0, 0, 0, "Unexpected any. Specify a different type.", "75"], + [0, 0, 0, "Unexpected any. Specify a different type.", "76"], + [0, 0, 0, "Unexpected any. Specify a different type.", "77"], + [0, 0, 0, "Unexpected any. Specify a different type.", "78"], + [0, 0, 0, "Unexpected any. Specify a different type.", "79"], + [0, 0, 0, "Unexpected any. Specify a different type.", "80"], + [0, 0, 0, "Unexpected any. Specify a different type.", "81"], + [0, 0, 0, "Unexpected any. Specify a different type.", "82"], + [0, 0, 0, "Unexpected any. Specify a different type.", "83"], + [0, 0, 0, "Unexpected any. Specify a different type.", "84"], + [0, 0, 0, "Unexpected any. Specify a different type.", "85"], + [0, 0, 0, "Unexpected any. Specify a different type.", "86"], + [0, 0, 0, "Unexpected any. Specify a different type.", "87"], + [0, 0, 0, "Unexpected any. Specify a different type.", "88"], + [0, 0, 0, "Unexpected any. Specify a different type.", "89"], + [0, 0, 0, "Unexpected any. Specify a different type.", "90"], + [0, 0, 0, "Unexpected any. Specify a different type.", "91"], + [0, 0, 0, "Unexpected any. Specify a different type.", "92"], + [0, 0, 0, "Unexpected any. Specify a different type.", "93"], + [0, 0, 0, "Unexpected any. Specify a different type.", "94"], + [0, 0, 0, "Unexpected any. Specify a different type.", "95"], + [0, 0, 0, "Unexpected any. Specify a different type.", "96"], + [0, 0, 0, "Unexpected any. Specify a different type.", "97"], + [0, 0, 0, "Unexpected any. Specify a different type.", "98"], + [0, 0, 0, "Unexpected any. Specify a different type.", "99"], + [0, 0, 0, "Unexpected any. Specify a different type.", "100"], + [0, 0, 0, "Unexpected any. Specify a different type.", "101"], + [0, 0, 0, "Unexpected any. Specify a different type.", "102"], + [0, 0, 0, "Unexpected any. Specify a different type.", "103"], + [0, 0, 0, "Unexpected any. Specify a different type.", "104"], + [0, 0, 0, "Unexpected any. Specify a different type.", "105"] + ], + "public/app/plugins/datasource/prometheus/datasource.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Do not use any type assertions.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"], + [0, 0, 0, "Unexpected any. Specify a different type.", "31"], + [0, 0, 0, "Unexpected any. Specify a different type.", "32"], + [0, 0, 0, "Unexpected any. Specify a different type.", "33"], + [0, 0, 0, "Unexpected any. Specify a different type.", "34"], + [0, 0, 0, "Unexpected any. Specify a different type.", "35"], + [0, 0, 0, "Unexpected any. Specify a different type.", "36"] + ], + "public/app/plugins/datasource/prometheus/language_provider.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"] + ], + "public/app/plugins/datasource/prometheus/language_provider.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"] + ], + "public/app/plugins/datasource/prometheus/language_utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"] + ], + "public/app/plugins/datasource/prometheus/metric_find_query.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/plugins/datasource/prometheus/metric_find_query.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/plugins/datasource/prometheus/query_hints.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/binaryScalarOperations.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/components/LabelParamEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/components/MetricSelect.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/components/PromQueryBuilder.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/components/PromQueryBuilder.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/components/PromQueryBuilderContainer.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/components/PromQueryBuilderContainer.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/components/PromQueryEditorSelector.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/shared/LabelFilterItem.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/shared/LabelFilters.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/shared/OperationEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/shared/OperationHeader.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/shared/OperationList.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/shared/OperationParamEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/shared/operationUtils.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/shared/parsingUtils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/shared/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/state.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/prometheus/querybuilder/state.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/prometheus/result_transformer.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"] + ], + "public/app/plugins/datasource/prometheus/result_transformer.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/datasource/prometheus/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/tempo/QueryEditor/QueryField.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/tempo/QueryEditor/ServiceGraphSection.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/datasource/tempo/datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"] + ], + "public/app/plugins/datasource/tempo/datasource.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"], + [0, 0, 0, "Do not use any type assertions.", "12"] + ], + "public/app/plugins/datasource/tempo/language_provider.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/tempo/resultTransformer.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/tempo/resultTransformer.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"] + ], + "public/app/plugins/datasource/tempo/testResponse.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/testdata/ConfigEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/testdata/QueryEditor.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/testdata/QueryEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"] + ], + "public/app/plugins/datasource/testdata/components/CSVWaveEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/testdata/components/PredictablePulseEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/testdata/components/RandomWalkEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/plugins/datasource/testdata/components/RawFrameEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/datasource/testdata/components/SimulationQueryEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/plugins/datasource/testdata/components/StreamingClientEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/datasource/testdata/constants.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/testdata/datasource.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/plugins/datasource/testdata/module.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/testdata/nodeGraphUtils.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/testdata/runStreams.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/testdata/testData/serviceMapResponse.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/datasource/testdata/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/zipkin/QueryField.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/datasource/zipkin/QueryField.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/datasource/zipkin/datasource.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/plugins/datasource/zipkin/datasource.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/plugins/datasource/zipkin/utils/testData.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/datasource/zipkin/utils/testResponse.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/plugins/datasource/zipkin/utils/transforms.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/alertGroups/AlertGroupsPanel.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/panel/alertlist/AlertList.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/panel/alertlist/AlertListMigration.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/panel/alertlist/AlertListMigrationHandler.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/panel/alertlist/UnifiedAlertList.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/panel/alertlist/unified-alerting/UngroupedView.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/panel/annolist/AnnoListPanel.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/panel/annolist/AnnoListPanel.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/panel/annolist/module.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"] + ], + "public/app/plugins/panel/barchart/BarChartPanel.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/panel/barchart/TickSpacingEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/barchart/bars.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"] + ], + "public/app/plugins/panel/barchart/module.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/barchart/quadtree.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/barchart/suggestions.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/barchart/utils.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "public/app/plugins/panel/barchart/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/bargauge/BarGaugeMigrations.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/bargauge/BarGaugePanel.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/bargauge/BarGaugePanel.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/candlestick/CandlestickPanel.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/panel/candlestick/module.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/plugins/panel/candlestick/utils.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"] + ], + "public/app/plugins/panel/canvas/CanvasContextMenu.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/panel/canvas/CanvasPanel.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/panel/canvas/InlineEdit.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/canvas/InlineEditBody.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/plugins/panel/canvas/editor/APIEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/plugins/panel/canvas/editor/LayerElementListEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/panel/canvas/editor/PlacementEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/canvas/editor/elementEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/panel/canvas/editor/layerEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/plugins/panel/dashlist/module.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/debug/CursorView.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/debug/EventBusLogger.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/panel/debug/RenderInfoViewer.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/panel/gauge/GaugeMigrations.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/gauge/GaugeMigrations.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/panel/geomap/GeomapPanel.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Do not use any type assertions.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Do not use any type assertions.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"] + ], + "public/app/plugins/panel/geomap/components/DataHoverRows.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/panel/geomap/components/DataHoverView.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/geomap/editor/GeomapStyleRulesEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/plugins/panel/geomap/editor/LayersEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/plugins/panel/geomap/editor/MapViewEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/geomap/editor/StyleRuleEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/panel/geomap/editor/layerEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/geomap/layers/basemaps/carto.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/panel/geomap/layers/basemaps/esri.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/panel/geomap/layers/registry.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/geomap/migrations.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/geomap/migrations.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/plugins/panel/geomap/module.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/panel/geomap/style/utils.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/geomap/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/geomap/utils/selection.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/geomap/view.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/panel/gettingstarted/GettingStarted.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/gettingstarted/components/Step.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/panel/graph/GraphContextMenuCtrl.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/graph/GraphMigrations.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/graph/GraphMigrations.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/panel/graph/Legend/Legend.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"] + ], + "public/app/plugins/panel/graph/Legend/LegendSeriesItem.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/plugins/panel/graph/align_yaxes.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/panel/graph/annotation_tooltip.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/panel/graph/axes_editor.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "public/app/plugins/panel/graph/data_processor.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/plugins/panel/graph/event_editor.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/panel/graph/event_manager.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "public/app/plugins/panel/graph/graph.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Do not use any type assertions.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"], + [0, 0, 0, "Unexpected any. Specify a different type.", "31"], + [0, 0, 0, "Unexpected any. Specify a different type.", "32"], + [0, 0, 0, "Unexpected any. Specify a different type.", "33"], + [0, 0, 0, "Unexpected any. Specify a different type.", "34"], + [0, 0, 0, "Unexpected any. Specify a different type.", "35"], + [0, 0, 0, "Unexpected any. Specify a different type.", "36"], + [0, 0, 0, "Unexpected any. Specify a different type.", "37"], + [0, 0, 0, "Unexpected any. Specify a different type.", "38"], + [0, 0, 0, "Unexpected any. Specify a different type.", "39"], + [0, 0, 0, "Unexpected any. Specify a different type.", "40"], + [0, 0, 0, "Unexpected any. Specify a different type.", "41"], + [0, 0, 0, "Unexpected any. Specify a different type.", "42"], + [0, 0, 0, "Unexpected any. Specify a different type.", "43"], + [0, 0, 0, "Unexpected any. Specify a different type.", "44"], + [0, 0, 0, "Unexpected any. Specify a different type.", "45"], + [0, 0, 0, "Unexpected any. Specify a different type.", "46"] + ], + "public/app/plugins/panel/graph/graph_tooltip.d.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/graph/graph_tooltip.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Do not use any type assertions.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"] + ], + "public/app/plugins/panel/graph/histogram.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/plugins/panel/graph/jquery.flot.events.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"], + [0, 0, 0, "Unexpected any. Specify a different type.", "31"], + [0, 0, 0, "Unexpected any. Specify a different type.", "32"], + [0, 0, 0, "Unexpected any. Specify a different type.", "33"], + [0, 0, 0, "Unexpected any. Specify a different type.", "34"], + [0, 0, 0, "Unexpected any. Specify a different type.", "35"], + [0, 0, 0, "Unexpected any. Specify a different type.", "36"], + [0, 0, 0, "Unexpected any. Specify a different type.", "37"], + [0, 0, 0, "Unexpected any. Specify a different type.", "38"], + [0, 0, 0, "Unexpected any. Specify a different type.", "39"], + [0, 0, 0, "Unexpected any. Specify a different type.", "40"], + [0, 0, 0, "Unexpected any. Specify a different type.", "41"], + [0, 0, 0, "Unexpected any. Specify a different type.", "42"], + [0, 0, 0, "Unexpected any. Specify a different type.", "43"], + [0, 0, 0, "Unexpected any. Specify a different type.", "44"], + [0, 0, 0, "Unexpected any. Specify a different type.", "45"], + [0, 0, 0, "Unexpected any. Specify a different type.", "46"], + [0, 0, 0, "Unexpected any. Specify a different type.", "47"] + ], + "public/app/plugins/panel/graph/module.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"] + ], + "public/app/plugins/panel/graph/series_overrides_ctrl.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/plugins/panel/graph/specs/data_processor.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/graph/specs/graph.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"] + ], + "public/app/plugins/panel/graph/specs/graph_ctrl.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/panel/graph/specs/graph_tooltip.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/graph/specs/histogram.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/graph/specs/series_override_ctrl.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/graph/specs/threshold_manager.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/plugins/panel/graph/specs/time_region_manager.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"] + ], + "public/app/plugins/panel/graph/threshold_manager.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"] + ], + "public/app/plugins/panel/graph/thresholds_form.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/panel/graph/time_region_manager.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"] + ], + "public/app/plugins/panel/graph/time_regions_form.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/panel/graph/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/heatmap-new/HeatmapHoverView.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/panel/heatmap-new/HeatmapPanel.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/plugins/panel/heatmap-new/migrations.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/heatmap-new/migrations.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/panel/heatmap-new/module.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"] + ], + "public/app/plugins/panel/heatmap-new/palettes.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/heatmap-new/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"], + [0, 0, 0, "Do not use any type assertions.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Do not use any type assertions.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Do not use any type assertions.", "15"], + [0, 0, 0, "Do not use any type assertions.", "16"], + [0, 0, 0, "Do not use any type assertions.", "17"], + [0, 0, 0, "Do not use any type assertions.", "18"], + [0, 0, 0, "Do not use any type assertions.", "19"], + [0, 0, 0, "Do not use any type assertions.", "20"], + [0, 0, 0, "Do not use any type assertions.", "21"], + [0, 0, 0, "Do not use any type assertions.", "22"], + [0, 0, 0, "Do not use any type assertions.", "23"], + [0, 0, 0, "Do not use any type assertions.", "24"], + [0, 0, 0, "Do not use any type assertions.", "25"], + [0, 0, 0, "Do not use any type assertions.", "26"], + [0, 0, 0, "Do not use any type assertions.", "27"], + [0, 0, 0, "Do not use any type assertions.", "28"], + [0, 0, 0, "Do not use any type assertions.", "29"], + [0, 0, 0, "Do not use any type assertions.", "30"] + ], + "public/app/plugins/panel/heatmap/axes_editor.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/plugins/panel/heatmap/color_legend.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Do not use any type assertions.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Do not use any type assertions.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Do not use any type assertions.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"] + ], + "public/app/plugins/panel/heatmap/color_scale.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/plugins/panel/heatmap/display_editor.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/panel/heatmap/heatmap_ctrl.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"] + ], + "public/app/plugins/panel/heatmap/heatmap_data_converter.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"] + ], + "public/app/plugins/panel/heatmap/heatmap_tooltip.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"] + ], + "public/app/plugins/panel/heatmap/rendering.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"], + [0, 0, 0, "Unexpected any. Specify a different type.", "25"], + [0, 0, 0, "Unexpected any. Specify a different type.", "26"], + [0, 0, 0, "Unexpected any. Specify a different type.", "27"], + [0, 0, 0, "Unexpected any. Specify a different type.", "28"], + [0, 0, 0, "Unexpected any. Specify a different type.", "29"], + [0, 0, 0, "Unexpected any. Specify a different type.", "30"], + [0, 0, 0, "Unexpected any. Specify a different type.", "31"], + [0, 0, 0, "Unexpected any. Specify a different type.", "32"], + [0, 0, 0, "Unexpected any. Specify a different type.", "33"], + [0, 0, 0, "Unexpected any. Specify a different type.", "34"], + [0, 0, 0, "Unexpected any. Specify a different type.", "35"], + [0, 0, 0, "Unexpected any. Specify a different type.", "36"], + [0, 0, 0, "Unexpected any. Specify a different type.", "37"], + [0, 0, 0, "Unexpected any. Specify a different type.", "38"], + [0, 0, 0, "Unexpected any. Specify a different type.", "39"], + [0, 0, 0, "Unexpected any. Specify a different type.", "40"], + [0, 0, 0, "Unexpected any. Specify a different type.", "41"], + [0, 0, 0, "Unexpected any. Specify a different type.", "42"], + [0, 0, 0, "Unexpected any. Specify a different type.", "43"], + [0, 0, 0, "Do not use any type assertions.", "44"], + [0, 0, 0, "Unexpected any. Specify a different type.", "45"], + [0, 0, 0, "Unexpected any. Specify a different type.", "46"] + ], + "public/app/plugins/panel/heatmap/specs/heatmap_ctrl.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/panel/heatmap/specs/heatmap_data_converter.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/panel/heatmap/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/plugins/panel/histogram/Histogram.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/plugins/panel/icon/IconPanel.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/icon/module.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/live/LiveChannelEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"] + ], + "public/app/plugins/panel/live/LivePanel.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/plugins/panel/live/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/logs/LogsPanel.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/panel/nodeGraph/Edge.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/panel/nodeGraph/EdgeLabel.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/panel/nodeGraph/Legend.test.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/panel/nodeGraph/Legend.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/panel/nodeGraph/Node.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/panel/nodeGraph/NodeGraph.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"] + ], + "public/app/plugins/panel/nodeGraph/ViewControls.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/nodeGraph/layout.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/panel/nodeGraph/layout.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/panel/nodeGraph/useCategorizeFrames.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/panel/nodeGraph/usePanning.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/plugins/panel/nodeGraph/useZoom.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/panel/nodeGraph/utils.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/plugins/panel/piechart/PieChart.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/piechart/migrations.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/piechart/suggestions.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/stat/StatMigrations.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/plugins/panel/stat/StatMigrations.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/panel/stat/types.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/state-timeline/TimelineChart.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/panel/state-timeline/migrations.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"] + ], + "public/app/plugins/panel/state-timeline/timeline.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"] + ], + "public/app/plugins/panel/state-timeline/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/state-timeline/utils.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "public/app/plugins/panel/state-timeline/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/plugins/panel/table-old/column_options.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"] + ], + "public/app/plugins/panel/table-old/editor.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"] + ], + "public/app/plugins/panel/table-old/module.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Do not use any type assertions.", "21"], + [0, 0, 0, "Do not use any type assertions.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"] + ], + "public/app/plugins/panel/table-old/renderer.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"] + ], + "public/app/plugins/panel/table-old/specs/renderer.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/table-old/specs/transformers.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/plugins/panel/table-old/transformers.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"] + ], + "public/app/plugins/panel/table-old/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"] + ], + "public/app/plugins/panel/table/migrations.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "public/app/plugins/panel/table/module.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/app/plugins/panel/text/TextPanelEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/text/textPanelMigrationHandler.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/text/textPanelMigrationHandler.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"] + ], + "public/app/plugins/panel/timeseries/FillBelowToEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/timeseries/LayoutBuilder.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/timeseries/LineStyleEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/timeseries/SpanNullsEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/plugins/panel/timeseries/ThresholdsStyleEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/timeseries/migrations.test.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"], + [0, 0, 0, "Unexpected any. Specify a different type.", "17"], + [0, 0, 0, "Unexpected any. Specify a different type.", "18"], + [0, 0, 0, "Unexpected any. Specify a different type.", "19"], + [0, 0, 0, "Unexpected any. Specify a different type.", "20"], + [0, 0, 0, "Unexpected any. Specify a different type.", "21"], + [0, 0, 0, "Unexpected any. Specify a different type.", "22"], + [0, 0, 0, "Unexpected any. Specify a different type.", "23"], + [0, 0, 0, "Unexpected any. Specify a different type.", "24"] + ], + "public/app/plugins/panel/timeseries/migrations.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Do not use any type assertions.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"] + ], + "public/app/plugins/panel/timeseries/overrides/hideSeriesConfigFactory.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"] + ], + "public/app/plugins/panel/timeseries/plugins/ContextMenuPlugin.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/plugins/panel/timeseries/plugins/annotations/AnnotationEditor.tsx:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"] + ], + "public/app/plugins/panel/timeseries/suggestions.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/plugins/panel/xychart/ExplicitEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/xychart/XYDimsEditor.tsx:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/plugins/panel/xychart/dims.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"] + ], + "public/app/plugins/panel/xychart/scatter.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Do not use any type assertions.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Do not use any type assertions.", "12"], + [0, 0, 0, "Do not use any type assertions.", "13"], + [0, 0, 0, "Do not use any type assertions.", "14"], + [0, 0, 0, "Do not use any type assertions.", "15"] + ], + "public/app/plugins/panel/xychart/types.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/polyfills/old-mediaquerylist.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/store/configureStore.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/store/store.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/types/alerting.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/app/types/appEvent.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"] + ], + "public/app/types/dashboard.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/app/types/events.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"] + ], + "public/app/types/explore.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/types/jquery/jquery.d.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/app/types/plugins.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/app/types/store.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/types/templates.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/app/types/unified-alerting-dto.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/app/types/unified-alerting.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/test/core/redux/mocks.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/test/core/redux/reducerTester.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/test/core/redux/reduxTester.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Do not use any type assertions.", "6"], + [0, 0, 0, "Do not use any type assertions.", "7"], + [0, 0, 0, "Do not use any type assertions.", "8"], + [0, 0, 0, "Unexpected any. Specify a different type.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"] + ], + "public/test/core/thunk/thunkTester.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/test/global-jquery-shim.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/test/helpers/convertToStoreState.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/test/helpers/createFetchResponse.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"] + ], + "public/test/helpers/getDashboardModel.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/test/helpers/initTemplateSrv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/test/jest-setup.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/test/jest-shim.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Do not use any type assertions.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"] + ], + "public/test/lib/common.ts:5381": [ + [0, 0, 0, "Do not use any type assertions.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"] + ], + "public/test/matchers/index.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/test/matchers/toEmitValues.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"] + ], + "public/test/matchers/toEmitValuesWith.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"] + ], + "public/test/matchers/utils.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"] + ], + "public/test/mocks/angular.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/test/mocks/backend_srv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"] + ], + "public/test/mocks/common.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/test/mocks/datasource_srv.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Do not use any type assertions.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Do not use any type assertions.", "4"], + [0, 0, 0, "Do not use any type assertions.", "5"] + ], + "public/test/mocks/workers.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Do not use any type assertions.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"] + ], + "public/test/specs/helpers.ts:5381": [ + [0, 0, 0, "Unexpected any. Specify a different type.", "0"], + [0, 0, 0, "Unexpected any. Specify a different type.", "1"], + [0, 0, 0, "Unexpected any. Specify a different type.", "2"], + [0, 0, 0, "Unexpected any. Specify a different type.", "3"], + [0, 0, 0, "Unexpected any. Specify a different type.", "4"], + [0, 0, 0, "Unexpected any. Specify a different type.", "5"], + [0, 0, 0, "Unexpected any. Specify a different type.", "6"], + [0, 0, 0, "Unexpected any. Specify a different type.", "7"], + [0, 0, 0, "Unexpected any. Specify a different type.", "8"], + [0, 0, 0, "Do not use any type assertions.", "9"], + [0, 0, 0, "Unexpected any. Specify a different type.", "10"], + [0, 0, 0, "Unexpected any. Specify a different type.", "11"], + [0, 0, 0, "Unexpected any. Specify a different type.", "12"], + [0, 0, 0, "Unexpected any. Specify a different type.", "13"], + [0, 0, 0, "Unexpected any. Specify a different type.", "14"], + [0, 0, 0, "Unexpected any. Specify a different type.", "15"], + [0, 0, 0, "Unexpected any. Specify a different type.", "16"] ] }` }; diff --git a/.betterer.ts b/.betterer.ts index 9553bd4621f..236d57b7286 100644 --- a/.betterer.ts +++ b/.betterer.ts @@ -1,28 +1,18 @@ import { regexp } from '@betterer/regexp'; -import { eslint } from '@betterer/eslint'; import { BettererFileTest } from '@betterer/betterer'; +import { ESLint, Linter } from 'eslint'; +import { existsSync } from 'fs'; export default { 'no enzyme tests': () => regexp(/from 'enzyme'/g).include('**/*.test.*'), - 'better eslint': () => - eslint({ - '@typescript-eslint/no-explicit-any': 'error', - '@typescript-eslint/consistent-type-assertions': [ - 'error', - { - assertionStyle: 'never', - }, - ], - }).include('**/*.{ts,tsx}'), - 'no undocumented stories': () => countUndocumentedStories().include('**/*.{story.tsx,mdx}'), + 'better eslint': () => countEslintErrors().include('**/*.{ts,tsx}'), + 'no undocumented stories': () => countUndocumentedStories().include('**/*.story.tsx'), }; function countUndocumentedStories() { return new BettererFileTest(async (filePaths, fileTestResult) => { - const storyFilePaths = filePaths.filter((filePath) => filePath.endsWith('story.tsx')); - const mdxFilePaths = filePaths.filter((filePath) => filePath.endsWith('mdx')); - storyFilePaths.forEach((filePath) => { - if (!mdxFilePaths.includes(filePath.replace(/\.story.tsx$/, '.mdx'))) { + filePaths.forEach((filePath) => { + if (!existsSync(filePath.replace(/\.story.tsx$/, '.mdx'))) { // In this case the file contents don't matter: const file = fileTestResult.addFile(filePath, ''); // Add the issue to the first character of the file: @@ -31,3 +21,49 @@ function countUndocumentedStories() { }); }); } + +function countEslintErrors() { + return new BettererFileTest(async (filePaths, fileTestResult, resolver) => { + const { baseDirectory } = resolver; + const cli = new ESLint({ cwd: baseDirectory }); + + await Promise.all( + filePaths.map(async (filePath) => { + const linterOptions = (await cli.calculateConfigForFile(filePath)) as Linter.Config; + + const rules: Partial = { + '@typescript-eslint/no-explicit-any': 'error', + }; + + if (!filePath.endsWith('.test.tsx') && !filePath.endsWith('.test.ts')) { + rules['@typescript-eslint/consistent-type-assertions'] = [ + 'error', + { + assertionStyle: 'never', + }, + ]; + } + + const runner = new ESLint({ + baseConfig: { + ...linterOptions, + rules, + }, + useEslintrc: false, + cwd: baseDirectory, + }); + + const lintResults = await runner.lintFiles([filePath]); + lintResults + .filter((lintResult) => lintResult.source) + .forEach((lintResult) => { + const { messages } = lintResult; + const file = fileTestResult.addFile(filePath, ''); + messages.forEach((message, index) => { + file.addIssue(0, 0, message.message, `${index}`); + }); + }); + }) + ); + }); +} From c2985f3c058878140c4b44055245755d38ff77d0 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Mon, 4 Jul 2022 19:49:04 +0100 Subject: [PATCH 07/88] template functions reference and examples moved to corresponding section, description and links fixed (#51654) (#51721) (cherry picked from commit 9797744c10109aba2ce9aabad232784a3a36a80e) Co-authored-by: Santiago --- .../alerting/fundamentals/annotation-label/_index.md | 2 +- .../annotation-label}/example-template-functions.md | 6 ++---- .../annotation-label}/template-functions.md | 7 +++---- 3 files changed, 6 insertions(+), 9 deletions(-) rename docs/sources/alerting/{contact-points/message-templating => fundamentals/annotation-label}/example-template-functions.md (86%) rename docs/sources/alerting/{contact-points/message-templating => fundamentals/annotation-label}/template-functions.md (95%) diff --git a/docs/sources/alerting/fundamentals/annotation-label/_index.md b/docs/sources/alerting/fundamentals/annotation-label/_index.md index 4d2dd03bf7e..8270a4ce178 100644 --- a/docs/sources/alerting/fundamentals/annotation-label/_index.md +++ b/docs/sources/alerting/fundamentals/annotation-label/_index.md @@ -16,7 +16,7 @@ weight: 401 # Annotations and labels for alerting rules -Annotations and labels are key value pairs associated with alerts originating from the alerting rule, datasource response, and as a result of alerting rule evaluation. They can be used in alert notifications directly or in [templates]({{< relref "../../contact-points/message-templating/" >}}) and [template functions]({{< relref "../../contact-points/message-templating/template-functions/" >}}) to create notification contact dynamically. +Annotations and labels are key value pairs associated with alerts originating from the alerting rule, datasource response, and as a result of alerting rule evaluation. They can be used in alert notifications directly or in [templates]({{< relref "../../contact-points/message-templating/" >}}) and [template functions]({{< relref "../../contact-points/fundamentals/annotation-label/template-functions/" >}}) to create notification contact dynamically. ## Annotations diff --git a/docs/sources/alerting/contact-points/message-templating/example-template-functions.md b/docs/sources/alerting/fundamentals/annotation-label/example-template-functions.md similarity index 86% rename from docs/sources/alerting/contact-points/message-templating/example-template-functions.md rename to docs/sources/alerting/fundamentals/annotation-label/example-template-functions.md index 76693eda54d..3bd894057ab 100644 --- a/docs/sources/alerting/contact-points/message-templating/example-template-functions.md +++ b/docs/sources/alerting/fundamentals/annotation-label/example-template-functions.md @@ -1,9 +1,7 @@ --- aliases: - - /docs/grafana/latest/alerting/contact-points/message-templating/example-template-functions/ - - /docs/grafana/latest/alerting/contact-points/message-templating/template-functions/ - - /docs/grafana/latest/alerting/message-templating/template-functions/ - - /docs/grafana/latest/alerting/unified-alerting/message-templating/template-functions/ + - /docs/grafana/latest/alerting/fundamentals/annotation-label/example-template-functions/ + - /docs/grafana/latest/alerting/unified-alerting/fundamentals/annotation-label/template-functions/ keywords: - grafana - alerting diff --git a/docs/sources/alerting/contact-points/message-templating/template-functions.md b/docs/sources/alerting/fundamentals/annotation-label/template-functions.md similarity index 95% rename from docs/sources/alerting/contact-points/message-templating/template-functions.md rename to docs/sources/alerting/fundamentals/annotation-label/template-functions.md index 567f0452703..b06bb916045 100644 --- a/docs/sources/alerting/contact-points/message-templating/template-functions.md +++ b/docs/sources/alerting/fundamentals/annotation-label/template-functions.md @@ -1,8 +1,7 @@ --- aliases: - - /docs/grafana/latest/alerting/contact-points/message-templating/template-functions/ - - /docs/grafana/latest/alerting/message-templating/template-functions/ - - /docs/grafana/latest/alerting/unified-alerting/message-templating/template-functions/ + - /docs/grafana/latest/alerting/fundamentals/annotation-label/template-functions/ + - /docs/grafana/latest/alerting/unified-alerting/fundamentals/annotation-label/template-functions/ keywords: - grafana - alerting @@ -15,7 +14,7 @@ weight: 125 # Template Functions -Template functions allow you to process labels and annotations to generate dynamic notifications. +Template functions allow you to process alert evaluation results to generate dynamic notifications. | Name | Argument type | Return type | Description | | ----------------------------------------- | ------------------------------------------------------------ | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | From d990511121c65c7079a510a80aae5d0cdbd7a221 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Tue, 5 Jul 2022 07:22:23 +0100 Subject: [PATCH 08/88] TestDataDB: update CSV wave scenario ui (#51719) (#51725) * update testdb csv wave * support enter key Co-authored-by: Ryan McKinley (cherry picked from commit f78b7f1f179e6fb8f2e378e425cd8d0b64762b1b) Co-authored-by: Sriram --- .betterer.results | 3 - .../testdata/components/CSVWaveEditor.tsx | 121 ++++++++++-------- 2 files changed, 68 insertions(+), 56 deletions(-) diff --git a/.betterer.results b/.betterer.results index 3ed65f96ec1..1c618f107af 100644 --- a/.betterer.results +++ b/.betterer.results @@ -8936,9 +8936,6 @@ exports[`better eslint`] = { [0, 0, 0, "Do not use any type assertions.", "10"], [0, 0, 0, "Unexpected any. Specify a different type.", "11"] ], - "public/app/plugins/datasource/testdata/components/CSVWaveEditor.tsx:5381": [ - [0, 0, 0, "Do not use any type assertions.", "0"] - ], "public/app/plugins/datasource/testdata/components/PredictablePulseEditor.tsx:5381": [ [0, 0, 0, "Do not use any type assertions.", "0"] ], diff --git a/public/app/plugins/datasource/testdata/components/CSVWaveEditor.tsx b/public/app/plugins/datasource/testdata/components/CSVWaveEditor.tsx index b1090c2d6c1..585112ec037 100644 --- a/public/app/plugins/datasource/testdata/components/CSVWaveEditor.tsx +++ b/public/app/plugins/datasource/testdata/components/CSVWaveEditor.tsx @@ -1,9 +1,9 @@ -import React, { ChangeEvent, PureComponent } from 'react'; +import React, { PureComponent, useState } from 'react'; import { Button, InlineField, InlineFieldRow, Input } from '@grafana/ui'; import { defaultCSVWaveQuery } from '../constants'; -import { CSVWave } from '../types'; +import type { CSVWave } from '../types'; interface WavesProps { waves?: CSVWave[]; @@ -18,59 +18,74 @@ interface WaveProps { onAdd: () => void; } -class CSVWaveEditor extends PureComponent { - onFieldChange = (field: keyof CSVWave) => (e: ChangeEvent) => { - const { value } = e.target as HTMLInputElement; - - this.props.onChange(this.props.index, { - ...this.props.wave, - [field]: value, - }); - }; - - onNameChange = this.onFieldChange('name'); - onLabelsChange = this.onFieldChange('labels'); - onCSVChange = this.onFieldChange('valuesCSV'); - onTimeStepChange = (e: ChangeEvent) => { - const timeStep = e.target.valueAsNumber; - this.props.onChange(this.props.index, { - ...this.props.wave, - timeStep, - }); - }; - - render() { - const { wave, last } = this.props; - let action = this.props.onAdd; - if (!last) { - action = () => { - this.props.onChange(this.props.index, undefined); // remove - }; +const CSVWaveEditor = (props: WaveProps) => { + const { wave, last, index, onAdd, onChange } = props; + const [valuesCSV, setValuesCSV] = useState(wave.valuesCSV || ''); + const [labels, setLabels] = useState(wave.labels || ''); + const [name, setName] = useState(wave.name || ''); + const onAction = () => { + if (last) { + onAdd(); + } else { + onChange(index, undefined); } + }; + const onValueChange = (key: K, value: V) => { + onChange(index, { ...wave, [key]: value }); + }; + const onKeyDown = (evt: React.KeyboardEvent) => { + if (evt.key === 'Enter') { + onValueChange('valuesCSV', valuesCSV); + } + }; - return ( - - - - - - - - - - - - - -