start the path to rust

This commit is contained in:
2026-02-10 15:54:09 +00:00
parent 237dba3bab
commit 8bd8c295b0
318 changed files with 28352 additions and 428 deletions

View File

@@ -0,0 +1,22 @@
/**
* SMTP Client Factory
* Factory function for client creation and dependency injection
*/
import { SmtpClient } from './smtp-client.js';
import type { ISmtpClientOptions } from './interfaces.js';
/**
* Create a complete SMTP client with all components
*/
export declare function createSmtpClient(options: ISmtpClientOptions): SmtpClient;
/**
* Create SMTP client with connection pooling enabled
*/
export declare function createPooledSmtpClient(options: ISmtpClientOptions): SmtpClient;
/**
* Create SMTP client for high-volume sending
*/
export declare function createBulkSmtpClient(options: ISmtpClientOptions): SmtpClient;
/**
* Create SMTP client for transactional emails
*/
export declare function createTransactionalSmtpClient(options: ISmtpClientOptions): SmtpClient;