18 lines
604 B
TypeScript
18 lines
604 B
TypeScript
// native scope
|
|
import * as path from 'path';
|
|
|
|
export { path };
|
|
|
|
// @push.rocks scope
|
|
import * as smartlog from '@push.rocks/smartlog';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
import * as smartrequest from '@push.rocks/smartrequest';
|
|
import * as smartstring from '@push.rocks/smartstring';
|
|
|
|
export { smartlog, smartpath, smartpromise, smartrequest, smartstring };
|
|
|
|
// Re-export smartrequest types
|
|
export type { IExtendedIncomingMessage } from '@push.rocks/smartrequest';
|
|
export { SmartRequestClient } from '@push.rocks/smartrequest';
|