2019-05-14 06:50:50 +00:00
|
|
|
import * as early from '@pushrocks/early';
|
|
|
|
early.start('tsdoc');
|
2022-06-07 15:54:00 +00:00
|
|
|
import * as plugins from './tsdoc.plugins.js';
|
|
|
|
import * as cli from './tsdoc.cli.js';
|
2019-05-14 06:50:50 +00:00
|
|
|
early.stop();
|
2020-11-27 12:55:23 +00:00
|
|
|
|
|
|
|
export const runCli = async () => {
|
|
|
|
await cli.run();
|
|
|
|
};
|