tscoverage/ts/mod01/index.ts

17 lines
493 B
TypeScript
Raw Normal View History

2016-10-21 15:48:52 +00:00
/* ------------------------------------------
* This module creates TypeScript documentation
* -------------------------------------------- */
2017-01-17 23:58:09 +00:00
import * as q from 'smartq'
2016-10-02 18:35:13 +00:00
2016-10-21 15:48:52 +00:00
import * as paths from '../npmts.paths'
import { npmtsOra } from '../npmts.log'
import { INpmtsConfig } from '../npmts.config'
import * as plugins from './mod01.plugins'
export let run = function (configArg: INpmtsConfig) {
let done = q.defer<INpmtsConfig>()
2017-01-15 13:32:28 +00:00
done.resolve(configArg)
2016-09-06 15:21:25 +00:00
return done.promise
}