20 lines
518 B
TypeScript
20 lines
518 B
TypeScript
// node built-ins
|
|
import * as zlib from 'zlib';
|
|
import { promisify } from 'util';
|
|
import { Readable } from 'stream';
|
|
|
|
export { zlib, promisify, Readable };
|
|
|
|
// pushrocks scope
|
|
import * as smartfeed from '@push.rocks/smartfeed';
|
|
import * as smartxml from '@push.rocks/smartxml';
|
|
import * as smartyaml from '@push.rocks/smartyaml';
|
|
import * as webrequest from '@push.rocks/webrequest';
|
|
|
|
export { smartfeed, smartxml, smartyaml, webrequest };
|
|
|
|
// tsclass
|
|
import * as tsclass from '@tsclass/tsclass';
|
|
|
|
export { tsclass };
|