15 lines
204 B
TypeScript
15 lines
204 B
TypeScript
|
// node native
|
||
|
import * as events from 'events';
|
||
|
|
||
|
export {
|
||
|
events,
|
||
|
}
|
||
|
|
||
|
// third party
|
||
|
import * as mailparser from 'mailparser';
|
||
|
import * as imapflow from 'imapflow';
|
||
|
|
||
|
export {
|
||
|
mailparser,
|
||
|
imapflow,
|
||
|
}
|