tscoverage/ts/mod_docs/index.ts

16 lines
445 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 { INpmtsConfig } from '../npmts.config'
2017-11-28 16:33:55 +00:00
import * as plugins from './mod.plugins'
2016-10-21 15:48:52 +00:00
export let run = function (configArg: INpmtsConfig) {
2017-11-28 16:33:55 +00:00
let done = q.defer<INpmtsConfig>()
done.resolve(configArg)
return done.promise
2016-09-06 15:21:25 +00:00
}