forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
393 B
15 lines
393 B
import { FetchResponse } from '@grafana/runtime';
|
|
|
|
export function createFetchResponse<T>(data: T): FetchResponse<T> {
|
|
return {
|
|
data,
|
|
status: 200,
|
|
url: 'http://localhost:3000/api/tsdb/query',
|
|
config: { url: 'http://localhost:3000/api/tsdb/query' },
|
|
type: 'basic',
|
|
statusText: 'Ok',
|
|
redirected: false,
|
|
headers: ({} as unknown) as Headers,
|
|
ok: true,
|
|
};
|
|
}
|
|
|