grafana/public/app/store/store.ts
Tobias Skarhed 3045daedbd noImplicitAny: Reduce errors to 3800-ish (#17781)
* Reduce noImplicitAny errors to 3900-ish

* Fix lots of errors

* Add interface
2019-06-27 13:21:04 +02:00

6 lines
88 B
TypeScript

export let store: any;
export function setStore(newStore: any) {
store = newStore;
}