mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-19 05:03:32 +08:00
13 lines
253 B
TypeScript
13 lines
253 B
TypeScript
import { SMTPServer, SMTPServerOptions } from './';
|
|
|
|
function SMTPServerConnectTest() {
|
|
let options: SMTPServerOptions = {
|
|
secure: false,
|
|
};
|
|
let server = new SMTPServer(options);
|
|
server.listen(2323);
|
|
}
|
|
|
|
SMTPServerConnectTest();
|
|
|