mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
15 lines
244 B
TypeScript
15 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;
|
|
}
|