grafana/public/app/core/mod_defs.d.ts

15 lines
244 B
TypeScript
Raw Normal View History

2017-12-20 05:33:33 -06:00
declare module 'app/core/controllers/all' {
2015-12-16 10:01:34 -06:00
let json: any;
export { json };
2015-12-16 10:01:34 -06:00
}
2017-12-20 05:33:33 -06:00
declare module 'app/core/routes/all' {
2015-12-16 10:01:34 -06:00
let json: any;
export { json };
2015-12-16 10:01:34 -06:00
}
2017-12-20 05:33:33 -06:00
declare module 'app/core/services/all' {
2015-12-16 10:01:34 -06:00
let json: any;
export default json;
}