fix return type

pull/15626/head
Peter Holmberg 6 years ago
parent 9c33a9410f
commit 1994b18b5a
  1. 4
      public/app/types/explore.ts

@ -11,7 +11,7 @@ import {
ExploreStartPageProps,
} from '@grafana/ui';
import { Emitter } from 'app/core/core';
import { Emitter, TimeSeries } from 'app/core/core';
import { LogsModel, LogsDedupStrategy, LogLevel } from 'app/core/logs_model';
import TableModel from 'app/core/table_model';
@ -327,7 +327,7 @@ export type ResultGetter = (
result: DataQueryResponseData,
transaction: QueryTransaction,
allTransactions: QueryTransaction[]
) => any;
) => TimeSeries;
export interface TextMatch {
text: string;

Loading…
Cancel
Save