fix return type

This commit is contained in:
Peter Holmberg 2019-03-13 11:37:33 +01:00
parent 9c33a9410f
commit 1994b18b5a

View File

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