tscoverage/ts/mod01/index.ts

17 lines
493 B
TypeScript
Raw Normal View History

2016-10-21 17:48:52 +02:00
/* ------------------------------------------
* This module creates TypeScript documentation
* -------------------------------------------- */
2017-01-18 00:58:09 +01:00
import * as q from 'smartq'
2016-10-02 20:35:13 +02:00
2016-10-21 17:48:52 +02: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 14:32:28 +01:00
done.resolve(configArg)
2016-09-06 17:21:25 +02:00
return done.promise
}