mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* Grafana/Loki: Adds support for new Loki endpoints and metrics * Adds `/loki/` prefix to new loki endpoints and updates response interfaces * Improved legacy support * Removed changes related to plugin.json and added Loki-specific hacks * Fixes live streaming for legacy loki datasources
9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
import { StoreState } from 'app/types';
|
|
import { Store } from 'redux';
|
|
|
|
export let store: Store<StoreState>;
|
|
|
|
export function setStore(newStore: Store<StoreState>) {
|
|
store = newStore;
|
|
}
|