tscoverage/ts/npmts.promisechain.ts

11 lines
293 B
TypeScript
Raw Permalink Normal View History

2016-01-30 03:57:24 +00:00
/// <reference path="./index.ts" />
module NpmtsPromisechain {
export var init = function(){
2016-01-30 04:29:54 +00:00
var promisechain;
NpmtsOptions.run()
2016-01-31 21:24:57 +00:00
.then(NpmtsTypings.run)
2016-01-30 04:29:54 +00:00
.then(NpmtsDefault.run)
.then(NpmtsTests.run);
return promisechain;
2016-01-30 03:57:24 +00:00
}
}