mirror of
https://github.com/grafana/grafana.git
synced 2025-01-09 15:43:23 -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;
|
|
}
|