mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 05:29:42 -06:00
19 lines
244 B
TypeScript
19 lines
244 B
TypeScript
declare module "app/core/controllers/all" {
|
|
let json: any;
|
|
export {json};
|
|
}
|
|
|
|
declare module "app/core/routes/all" {
|
|
let json: any;
|
|
export {json};
|
|
}
|
|
|
|
declare module "app/core/services/all" {
|
|
let json: any;
|
|
export default json;
|
|
}
|
|
|
|
|
|
|
|
|