10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
import type { SmtpSecurity } from './SmtpSecurity';
|
|
export type SmtpValue = {
|
|
host: string;
|
|
port: number;
|
|
from: string;
|
|
username: string;
|
|
password: string | null;
|
|
security: SmtpSecurity;
|
|
};
|