File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 1- export interface ConnectConfig {
1+ interface ConnectConfig {
22 hostname : string ;
33 port ?: number ;
44}
55
6- export interface ConnectConfigWithAuthentication extends ConnectConfig {
6+ interface ConnectConfigWithAuthentication extends ConnectConfig {
77 username : string ;
88 password : string ;
99}
1010
11- export interface SendConfig {
11+ interface SendConfig {
1212 to : string ;
1313 from : string ;
1414 subject : string ;
1515 content : string ;
1616}
17+
18+ export type { ConnectConfigWithAuthentication , ConnectConfig , SendConfig }
Original file line number Diff line number Diff line change 11export type {
2- ConnectConfig ,
3- ConnectConfigWithAuthentication ,
4- SendConfig ,
5- } from " ./config.ts" ;
6- export { SmtpClient } from "./smtp.ts" ;
2+ ConnectConfig ,
3+ ConnectConfigWithAuthentication ,
4+ SendConfig ,
5+ } from ' ./config.ts'
6+ export { SmtpClient } from "./smtp.ts" ;
You can’t perform that action at this time.
0 commit comments