소스 검색

Fix: DatasourceApi query response typing fix (#16214)

Ryan McKinley 6 년 전
부모
커밋
6bec36ea04
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      packages/grafana-ui/src/types/datasource.ts

+ 4 - 4
packages/grafana-ui/src/types/datasource.ts

@@ -1,13 +1,13 @@
 import { TimeRange, RawTimeRange } from './time';
 import { PluginMeta } from './plugin';
-import { TableData, TimeSeries } from './data';
+import { TableData, TimeSeries, SeriesData } from './data';
+
+export type DataQueryResponseData = TimeSeries | TableData | SeriesData | any;
 
 export interface DataQueryResponse {
-  data: DataQueryResponseData;
+  data: DataQueryResponseData[];
 }
 
-export type DataQueryResponseData = TimeSeries[] | [TableData] | any;
-
 export interface DataQuery {
   /**
    * A - Z