tsdoc/ts/plugins.ts

41 lines
1.0 KiB
TypeScript
Raw Normal View History

2019-05-14 15:39:33 +00:00
// node native
import * as path from 'path';
export { path };
2019-05-13 17:41:02 +00:00
// pushrocks scope
2024-03-31 13:09:30 +00:00
import * as npmextra from '@push.rocks/npmextra';
import * as qenv from '@push.rocks/qenv';
import * as smartai from '@push.rocks/smartai';
import * as smartcli from '@push.rocks/smartcli';
2024-04-03 11:34:26 +00:00
import * as smartdelay from '@push.rocks/smartdelay';
2024-03-31 13:09:30 +00:00
import * as smartfile from '@push.rocks/smartfile';
2024-06-22 11:11:22 +00:00
import * as smartgit from '@push.rocks/smartgit';
2024-03-31 13:09:30 +00:00
import * as smartinteract from '@push.rocks/smartinteract';
import * as smartlog from '@push.rocks/smartlog';
import * as smartlogDestinationLocal from '@push.rocks/smartlog-destination-local';
import * as smartpath from '@push.rocks/smartpath';
import * as smartshell from '@push.rocks/smartshell';
import * as smarttime from '@push.rocks/smarttime';
2019-05-13 17:41:02 +00:00
2024-06-22 11:11:22 +00:00
export {
npmextra,
qenv,
smartai,
smartcli,
smartdelay,
smartfile,
smartgit,
smartinteract,
smartlog,
smartlogDestinationLocal,
smartpath,
smartshell,
smarttime,
2024-06-22 11:11:22 +00:00
};
2019-05-13 17:41:02 +00:00
// third party scope
import * as typedoc from 'typedoc';
2019-05-14 15:39:33 +00:00
export { typedoc };