mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
Co-authored-by: nmarrs <nathanielmarrs@gmail.com> Co-authored-by: Adela Almasan <adela.almasan@grafana.com> Co-authored-by: drew08t <drew08@gmail.com> Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
15 lines
297 B
TypeScript
15 lines
297 B
TypeScript
import { DataQuery } from '@grafana/data/src';
|
|
|
|
export const defaultQuery: DataQuery = {
|
|
refId: 'A',
|
|
datasource: {
|
|
type: 'datasource',
|
|
uid: 'grafana',
|
|
},
|
|
queryType: 'measurements',
|
|
};
|
|
|
|
export const implementationComingSoonAlert = () => {
|
|
alert('Implementation coming soon!');
|
|
};
|