mirror of
https://github.com/grafana/grafana.git
synced 2026-07-29 15:59:50 -05: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;
|
|
}
|