16 lines
452 B
TypeScript
16 lines
452 B
TypeScript
/* ------------------------------------------
|
|
* This module creates TypeScript documentation
|
|
* -------------------------------------------- */
|
|
import * as q from 'smartq';
|
|
|
|
import * as paths from '../npmts.paths';
|
|
import { INpmtsConfig } from '../npmts.config';
|
|
|
|
import * as plugins from './mod.plugins';
|
|
|
|
export let run = function(configArg: INpmtsConfig) {
|
|
let done = q.defer<INpmtsConfig>();
|
|
done.resolve(configArg);
|
|
return done.promise;
|
|
};
|