mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
18 lines
350 B
TypeScript
18 lines
350 B
TypeScript
///<reference path="require/require.d.ts" />
|
|
///<reference path="angularjs/angularjs.d.ts" />
|
|
///<reference path="lodash/lodash.d.ts" />
|
|
///<reference path="moment/moment.d.ts" />
|
|
|
|
// dummy modules
|
|
declare module 'app/core/config' {
|
|
var config : any;
|
|
export = config;
|
|
}
|
|
|
|
declare module 'app/core/utils/kbn' {
|
|
var kbn : any;
|
|
export = kbn;
|
|
}
|
|
|
|
|