Added typings for npm module traceback

* git: https://github.com/iriscouch/traceback
This commit is contained in:
Michael Zabka
2014-11-19 18:40:43 +01:00
parent 3420691dd9
commit fcc9487535
2 changed files with 61 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
/// <reference path="traceback.d.ts" />
/// <reference path="../node/node.d.ts" />
function testTraceback() {
var TracebackStaticClass: TracebackStatic = function () {
return [{
name: 'some',
path: 'nice',
file: 'good',
line: 113,
col: 32,
pos: 43,
fun: {'x-x': 'any'},
method: 'like',
this: { no: "thing"},
type: 'goal',
origin: ['bad'],
is_top: true,
is_eval: false,
is_native: true,
is_ctor: true
}];
};
var traceback: Traceback[] = TracebackStaticClass();
var TBReq: TracebackStatic = require('traceback');
var traceback: Traceback[] = TBReq();
}