tscoverage/ts/npmts.mods.ts

12 lines
486 B
TypeScript
Raw Normal View History

2016-10-21 15:48:52 +00:00
import * as plugins from './npmts.plugins'
import { LazyModule } from 'smartsystem'
2017-11-28 16:33:55 +00:00
import * as _modCompile from './mod_compile/index'
import * as _modDocs from './mod_docs/index'
import * as _modTest from './mod_test/index'
2016-10-21 15:48:52 +00:00
2017-11-28 16:33:55 +00:00
export let modCompile = new LazyModule<typeof _modCompile>('./mod_compile/index',__dirname)
export let modDocs = new LazyModule<typeof _modDocs>('./mod_docs/index',__dirname)
export let modTest = new LazyModule<typeof _modTest>('./mod_test/index',__dirname)