mirror of https://github.com/grafana/grafana
parent
005e1e002b
commit
a8197df1c1
@ -1,7 +0,0 @@ |
||||
/// <reference path="../headers/require.d.ts" />
|
||||
declare class Base { |
||||
constructor(); |
||||
testFunc(): number |
||||
getName(): string |
||||
} |
||||
export = Base; |
@ -1,6 +0,0 @@ |
||||
/// <reference path="../headers/require.d.ts" />
|
||||
declare class FileSearcher { |
||||
constructor(); |
||||
getFiles(): string[]; |
||||
} |
||||
export = FileSearcher; |
@ -1,13 +0,0 @@ |
||||
///<reference path="../headers/require.d.ts" />
|
||||
define(["require", "exports"], function (require, exports) { |
||||
var FileSearcher = (function () { |
||||
function FileSearcher() { |
||||
} |
||||
FileSearcher.prototype.getFiles = function () { |
||||
return ["asd"]; |
||||
}; |
||||
return FileSearcher; |
||||
})(); |
||||
return FileSearcher; |
||||
}); |
||||
//# sourceMappingURL=fileSearcher.js.map
|
@ -1 +0,0 @@ |
||||
{"version":3,"file":"fileSearcher.js","sourceRoot":"","sources":["fileSearcher.ts"],"names":["FileSearcher","FileSearcher.constructor","FileSearcher.getFiles"],"mappings":"AAAA,+CAA+C;;IAE/C;QAEIA;QACAC,CAACA;QAEMD,+BAAQA,GAAfA;YACEE,MAAMA,CAACA,CAACA,KAAKA,CAACA,CAACA;QACjBA,CAACA;QACLF,mBAACA;IAADA,CAACA,AARD,IAQC;IAEqB,AAAtB,OAAS,YAAY,CAAC"} |
@ -1,6 +0,0 @@ |
||||
/// <reference path="../headers/require.d.ts" />
|
||||
declare class Base { |
||||
constructor(); |
||||
getName(): string; |
||||
} |
||||
export = Base; |
@ -1,15 +0,0 @@ |
||||
///<reference path="../headers/require.d.ts" />
|
||||
define(["require", "exports", './fileSearcher', "../components/panelmeta"], function (require, exports, FileSearcher) { |
||||
var Base = (function () { |
||||
function Base() { |
||||
var test = new FileSearcher(); |
||||
test.getFiles(); |
||||
} |
||||
Base.prototype.getName = function () { |
||||
return "asd"; |
||||
}; |
||||
return Base; |
||||
})(); |
||||
return Base; |
||||
}); |
||||
//# sourceMappingURL=testCtrl.js.map
|
@ -1 +0,0 @@ |
||||
{"version":3,"file":"testCtrl.js","sourceRoot":"","sources":["testCtrl.ts"],"names":["Base","Base.constructor","Base.getName"],"mappings":"AAAA,+CAA+C;;IAO/C;QAEIA;YACEC,IAAIA,IAAIA,GAAGA,IAAIA,YAAYA,EAAEA,CAACA;YAC9BA,IAAIA,CAACA,QAAQA,EAAEA,CAACA;QAClBA,CAACA;QAEMD,sBAAOA,GAAdA;YACEE,MAAMA,CAACA,KAAKA,CAACA;QACfA,CAACA;QACLF,WAACA;IAADA,CAACA,AAVD,IAUC;IAEa,AAAd,OAAS,IAAI,CAAC"} |
@ -0,0 +1,17 @@ |
||||
{ |
||||
"compilerOptions": { |
||||
"sourceMap": true, |
||||
"declaration": true, |
||||
"outDir": "public/app_gen", |
||||
"target": "ES5", |
||||
"rootDir": "public/app", |
||||
"module": "amd", |
||||
"noEmitOnError": true |
||||
}, |
||||
"files": [ |
||||
"public/app/components/panelmeta.ts", |
||||
"public/app/controllers/fileSearcher.ts", |
||||
"public/app/controllers/testCtrl.ts", |
||||
"public/app/headers/require.d.ts" |
||||
] |
||||
} |
Loading…
Reference in new issue