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

15 lines
244 B
TypeScript
Raw Normal View History

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